diff options
author | Fabio Comuni <fabrix.xm@gmail.com> | 2011-06-30 16:44:54 +0200 |
---|---|---|
committer | Fabio Comuni <fabrix.xm@gmail.com> | 2011-06-30 16:44:54 +0200 |
commit | c5cddc742810c03ab86f6e99b0c4d52071c4b523 (patch) | |
tree | 4e3d5610650e6aafaac7c5dbe37fa1daf8fe19ee | |
parent | a07282ea6f79a28e09c0855c22effabf22b7dcd3 (diff) | |
download | volse-hubzilla-c5cddc742810c03ab86f6e99b0c4d52071c4b523.tar.gz volse-hubzilla-c5cddc742810c03ab86f6e99b0c4d52071c4b523.tar.bz2 volse-hubzilla-c5cddc742810c03ab86f6e99b0c4d52071c4b523.zip |
profile_sidebar hook use byref values in second argument array
-rw-r--r-- | boot.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2430,7 +2430,7 @@ function profile_sidebar($profile) { )); - $arr = array('profile' => $profile, 'entry' => $o); + $arr = array('profile' => &$profile, 'entry' => &$o); call_hooks('profile_sidebar', $arr); |