diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-05-15 15:07:23 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-05-15 15:07:23 -0400 |
commit | 6b4410d9eace776182f373886785cfd1f2736764 (patch) | |
tree | 0d4214f34336b679436e49d17f3f305684eda3f1 /index.php | |
parent | 14662354dc501e811dd714aa72fd8001842ee672 (diff) |
add a hook to muck around with the arguments array after it's initialized
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -101,6 +101,8 @@ function main() $args = array_merge($args, $_REQUEST); + Event::handle('ArgsInitialize', array(&$args)); + $action = $args['action']; if (!$action || !preg_match('/^[a-zA-Z0-9_-]*$/', $action)) { |