]> git.mxchange.org Git - friendica.git/blobdiff - mod/register.php
Remove Gravatar from core and add new hook avatar_lookup.
[friendica.git] / mod / register.php
index 8812ebadb0be1abc026276f577260a952aae3b91..b60707d457299f0a167a69564637c755c46a6718 100644 (file)
@@ -314,17 +314,13 @@ function register_post(&$a) {
 
        }
 
-       $use_gravatar = ((get_config('system','no_gravatar')) ? false : true);
-
-       // if we have an openid photo use it. 
-       // otherwise unless it is disabled, use gravatar
-
-       if($use_gravatar || strlen($photo)) {
+       // if we have no OpenID photo try to look up an avatar
+       if(! strlen($photo))
+               $photo = avatar_img($email);
 
+       // unless there is no avatar-plugin loaded
+       if(strlen($photo)) {
                require_once('include/Photo.php');
-
-               if(($use_gravatar) && (! strlen($photo))) 
-                       $photo = avatar_img($email);
                $photo_failure = false;
 
                $filename = basename($photo);