summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2008-12-01 23:05:49 -0500
committerEvan Prodromou <evan@controlyourself.ca>2008-12-01 23:05:49 -0500
commit09a9b76ffe1e981fdcf9689d802aafd6e64d7268 (patch)
tree09552170acab1336120a397e70dc236604d2c8e3 /index.php
parentd268703d693c8f785e0f1e80a2480230c9327703 (diff)
init() returns boolean success value
darcs-hash:20081202040549-5ed1f-b23a6b80b6e1823a97a7b446d9c4e59f8744b904.gz
Diffstat (limited to 'index.php')
-rw-r--r--index.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/index.php b/index.php
index 7d1eede46..5c16d2fd5 100644
--- a/index.php
+++ b/index.php
@@ -52,8 +52,9 @@ if (file_exists($actionfile)) {
}
$config['db']['database'] = $mirror;
}
- call_user_func(array($action_obj, 'init'), $_REQUEST);
- call_user_func(array($action_obj, 'handle'), $_REQUEST);
+ if (call_user_func(array($action_obj, 'init'), $_REQUEST)) {
+ call_user_func(array($action_obj, 'handle'), $_REQUEST);
+ }
} else {
common_user_error(_('Unknown action'));
} \ No newline at end of file