diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2008-12-03 12:32:25 -0500 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2008-12-03 12:32:25 -0500 |
commit | 96df5916ad2cb29d81c6114d7345c4b3381e27c8 (patch) | |
tree | 685f9b2e0b78e530f30298418b70cde3dddb849e /index.php | |
parent | 54df7dcbbd0dd6be05551edef9fa2546c16b3536 (diff) |
change Action::init() to Action::prepare() to avoid conflict with RSS10Action::init()
darcs-hash:20081203173225-5ed1f-e5ebfb202ed4a84c90851d0faa025ad09774d2c3.gz
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -52,7 +52,7 @@ if (file_exists($actionfile)) { } $config['db']['database'] = $mirror; } - if (call_user_func(array($action_obj, 'init'), $_REQUEST)) { + if (call_user_func(array($action_obj, 'prepare'), $_REQUEST)) { call_user_func(array($action_obj, 'handle'), $_REQUEST); } } else { |