Merge pull request #8470 from nextcloud/13-8468

[stable13] Use mb_* string methods to extract first character for generated avatars
This commit is contained in:
Roeland Jago Douma 2018-02-21 13:29:28 +01:00 committed by GitHub
commit 27aa0761bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -246,7 +246,7 @@ class Avatar implements IAvatar {
* @return string
*/
private function generateAvatar($userDisplayName, $size) {
$text = strtoupper(substr($userDisplayName, 0, 1));
$text = mb_strtoupper(mb_substr($userDisplayName, 0, 1), 'UTF-8');
$backgroundColor = $this->avatarBackgroundColor($userDisplayName);
$im = imagecreatetruecolor($size, $size);