aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabio Comuni <fabrix.xm@gmail.com>2011-06-30 16:44:54 +0200
committerFabio Comuni <fabrix.xm@gmail.com>2011-06-30 16:44:54 +0200
commitc5cddc742810c03ab86f6e99b0c4d52071c4b523 (patch)
tree4e3d5610650e6aafaac7c5dbe37fa1daf8fe19ee
parenta07282ea6f79a28e09c0855c22effabf22b7dcd3 (diff)
downloadvolse-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.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/boot.php b/boot.php
index ff036c3df..768493e44 100644
--- a/boot.php
+++ b/boot.php
@@ -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);