From: Mikael Nordfeldth Date: Mon, 30 Sep 2013 20:49:47 +0000 (+0200) Subject: Fixed regression in latest Avatar fixes X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=cced063e47878681a03dc287d8d6293b6981db08;p=quix0rs-gnu-social.git Fixed regression in latest Avatar fixes I thought typing would fix it, but there's a problem earlier in the execution chain which will be fixed in the future. --- diff --git a/classes/Profile.php b/classes/Profile.php index 5d8e46a741..a468c99128 100644 --- a/classes/Profile.php +++ b/classes/Profile.php @@ -174,10 +174,12 @@ class Profile extends Managed_DataObject return null; } - protected function _fillAvatar($width, Avatar $avatar) + protected function _fillAvatar($width, $avatar) { // This avoids storing null values, a problem report in issue #3478 - $this->_avatars[$width] = $avatar; + if (!empty($avatar)) { + $this->_avatars[$width] = $avatar; + } } // For backwards compatibility only!