aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mod/home.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/mod/home.php b/mod/home.php
index 8db5b26ac..0320c1b39 100644
--- a/mod/home.php
+++ b/mod/home.php
@@ -3,7 +3,8 @@
if(! function_exists('home_init')) {
function home_init(&$a) {
- call_hooks('home_init',array());
+ $ret = array();
+ call_hooks('home_init',$ret);
if(local_user() && ($a->user['nickname']))
goaway( $a->get_baseurl() . "/profile/" . $a->user['nickname'] );