projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0f8b561
)
Revert "lower case the action string before comparing"
author
Michael J. Rubinsky
<mrubinsk@horde.org>
Fri, 13 Feb 2009 21:28:03 +0000
(16:28 -0500)
committer
Michael J. Rubinsky
<mrubinsk@horde.org>
Fri, 13 Feb 2009 21:28:03 +0000
(16:28 -0500)
This needed to be fixed in Util::getPathInfo() by not trusting
PATH_INFO from lighttpd
This reverts commit
0f8b561da41ebaab8d699b665a2ed3f396bb34cb
.
kronolith/ajax.php
patch
|
blob
|
history
diff --git
a/kronolith/ajax.php
b/kronolith/ajax.php
index
e40628e
..
e309dbe
100644
(file)
--- a/
kronolith/ajax.php
+++ b/
kronolith/ajax.php
@@
-52,8
+52,8
@@
ob_start();
$notify = true;
$result = false;
-switch (
strtolower($action)
) {
-case '
liste
vents':
+switch (
$action
) {
+case '
ListE
vents':
$dates = Kronolith::listEvents(Util::getFormData('start'), Util::getFormData('end'));
if (is_a($dates, 'PEAR_Error')) {
$notification->push($dates, 'horde.error');
@@
-69,7
+69,7
@@
case 'listevents':
}
break;
-case '
chunkc
ontent':
+case '
ChunkC
ontent':
$chunk = basename(Util::getPost('chunk'));
if (!empty($chunk)) {
$result = new stdClass;