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.
This commit is contained in:
Mikael Nordfeldth 2013-09-30 22:49:47 +02:00
parent 24e0535001
commit cced063e47
1 changed files with 4 additions and 2 deletions

View File

@ -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!