Generate avatar color based on name instead of initials

This commit is contained in:
Maxime Corteel 2016-03-29 16:16:12 +02:00
parent 82b47f7400
commit 41f753d027
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>',