Return default profile photo if no profile photo is set

This commit is contained in:
fabrixxm 2018-11-21 09:37:13 +01:00 committed by Hypolite Petovan
parent 9b2e3fa916
commit 0ada604c7d
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ class Photo extends BaseModule
$photo = MPhoto::selectFirst([], ["scale" => $scale, "uid" => $uid, "profile" => 1]); $photo = MPhoto::selectFirst([], ["scale" => $scale, "uid" => $uid, "profile" => 1]);
if ($photo===false) { if ($photo===false) {
// todo default image info $photo = MPhoto::createPhotoForSystemResource($default);
} }
return $photo; return $photo;
} }