aboutsummaryrefslogtreecommitdiffstats
path: root/include/network.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/network.php')
-rw-r--r--include/network.php9
1 files changed, 8 insertions, 1 deletions
diff --git a/include/network.php b/include/network.php
index 58cef4756..23ef50b21 100644
--- a/include/network.php
+++ b/include/network.php
@@ -694,13 +694,20 @@ function allowed_email($email) {
if(! function_exists('avatar_img')) {
function avatar_img($email) {
+
+ $a = get_app();
+
$avatar['size'] = 175;
$avatar['email'] = $email;
$avatar['url'] = '';
+ $avatar['success'] = false;
call_hooks('avatar_lookup', $avatar);
- logger('Avatar: ' . $avatar['email'] . ' ' . $avatar['url']);
+ if(! $avatar['success'])
+ $avatar['url'] = $a->get_baseurl() . '/images/person-175.jpg';
+
+ logger('Avatar: ' . $avatar['email'] . ' ' . $avatar['url'], LOGGER_DEBUG);
return $avatar['url'];
}}