summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--index.php6
1 files changed, 1 insertions, 5 deletions
diff --git a/index.php b/index.php
index 6079d1f2c..9501e2275 100644
--- a/index.php
+++ b/index.php
@@ -272,11 +272,7 @@ function main()
return;
}
- // Note the order here: arguments from the URL mapper will
- // override request params that have been sent. This ensures
- // that for instance an action parameter can't be overridden
- // with an arbitrary action class.
- $args = array_merge($_REQUEST, $args);
+ $args = array_merge($args, $_REQUEST);
Event::handle('ArgsInitialize', array(&$args));