From: friendica Date: Thu, 15 Dec 2011 09:09:38 +0000 (-0800) Subject: must use named vars in plugin args X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=6d7781434bedda23366e6c007c15f85b80a0e073;p=friendica.git must use named vars in plugin args --- diff --git a/mod/home.php b/mod/home.php index 8db5b26ac9..0320c1b398 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'] );