Merge pull-request #2066

This commit is contained in:
Frederic Guillot 2016-03-29 20:44:45 -04:00
commit 57fd0aa78e
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ class LetterAvatarProvider extends Base implements AvatarProviderInterface
public function render(array $user, $size)
{
$initials = $this->helper->user->getInitials($user['name'] ?: $user['username']);
$rgb = $this->getBackgroundColor($initials);
$rgb = $this->getBackgroundColor($user['name'] ?: $user['username']);
return sprintf(
'<div class="avatar-letter" style="background-color: rgb(%d, %d, %d)" title="%s">%s</div>',