summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@status.net>2010-11-30 14:46:26 -0500
committerEvan Prodromou <evan@status.net>2010-11-30 14:46:26 -0500
commit7aa201fa5285d8dfe31ab6f254bfaa9819c65285 (patch)
treed64526dee6e8713e640f9424a495a34fa8a4c39d /index.php
parent0cc332eab634bc069c36e45910c5e5108c8a5410 (diff)
parentaf31767b637849f4cc904a89e30ccc81b4f4df66 (diff)
Merge branch 'master' into 0.9.x
Conflicts: lib/router.php
Diffstat (limited to 'index.php')
-rw-r--r--index.php6
1 files changed, 1 insertions, 5 deletions
diff --git a/index.php b/index.php
index b060a3d52..049d46afc 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));