diff options
author | RedMatrix <info@friendica.com> | 2014-09-29 13:08:56 +1000 |
---|---|---|
committer | RedMatrix <info@friendica.com> | 2014-09-29 13:08:56 +1000 |
commit | 6370713cc189a26db7a319c588158b4f05f61b35 (patch) | |
tree | 008b73b3a2c9c649cc3492113534a6cfe3731e7e /mod | |
parent | e18dfbe3ce0a8d89a5320e4f239801d0b84dd83e (diff) | |
parent | c07643e407aab16ecabfdf5f641166583e02ec36 (diff) | |
download | volse-hubzilla-6370713cc189a26db7a319c588158b4f05f61b35.tar.gz volse-hubzilla-6370713cc189a26db7a319c588158b4f05f61b35.tar.bz2 volse-hubzilla-6370713cc189a26db7a319c588158b4f05f61b35.zip |
Merge pull request #605 from habeascodice/master
2 minor bug-fixes, a line of docu, and a call_hooks() hook
Diffstat (limited to 'mod')
-rw-r--r-- | mod/profile_photo.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mod/profile_photo.php b/mod/profile_photo.php index c587b9606..aad9c9d16 100644 --- a/mod/profile_photo.php +++ b/mod/profile_photo.php @@ -364,7 +364,9 @@ function profile_photo_content(&$a) { // FIXME - yuk '$select' => sprintf('%s %s', t('or'), ($newuser) ? '<a href="' . $a->get_baseurl() . '">' . t('skip this step') . '</a>' : '<a href="'. $a->get_baseurl() . '/photos/' . $a->channel['channel_address'] . '">' . t('select a photo from your photo albums') . '</a>') )); - + + call_hooks('profile_photo_content_end', $o); + return $o; } else { |