diff options
author | friendica <info@friendica.com> | 2012-05-14 18:57:55 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-05-14 18:57:55 -0700 |
commit | bd32693a9059feb57081b5ae6ab0f9e0b504a7c7 (patch) | |
tree | 897a926f4cc058c1ddb194b1b0e33e678d243bca | |
parent | 59aefd9346fbd0d5c3cd9cdbf2158719221412f9 (diff) | |
parent | e574514e2177798e9c0c530737864e971a8275ab (diff) | |
download | volse-hubzilla-bd32693a9059feb57081b5ae6ab0f9e0b504a7c7.tar.gz volse-hubzilla-bd32693a9059feb57081b5ae6ab0f9e0b504a7c7.tar.bz2 volse-hubzilla-bd32693a9059feb57081b5ae6ab0f9e0b504a7c7.zip |
Merge pull request #297 from mexon/upstream
Allow plugins to modify the contact photo menu
-rw-r--r-- | include/Contact.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/Contact.php b/include/Contact.php index 2523fc023..675d1c81e 100644 --- a/include/Contact.php +++ b/include/Contact.php @@ -209,7 +209,7 @@ function contact_photo_menu($contact) { ); - $args = array('contact' => $contact, 'menu' => $menu); + $args = array('contact' => $contact, 'menu' => &$menu); call_hooks('contact_photo_menu', $args); |