Revert "Ticket #2796: don't allow arbitrary overriding of the 'action' class and other parameters pulled from the URL mapper."

This reverts commit 4193a826d3.
This commit is contained in:
Evan Prodromou 2010-11-26 11:18:41 -05:00
parent c0ce953288
commit 806832e339
1 changed files with 1 additions and 5 deletions

View File

@ -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));