mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:04:53 +01:00
Fix letter avatar for multibyte characters
This commit is contained in:
parent
fd8f69db80
commit
39f937fb05
@ -80,7 +80,7 @@ class avatar
|
||||
$bgcolor = $_color ? $_color : self::_getBgColor($firstname.$lastname.$id);
|
||||
|
||||
// Letters to be shown
|
||||
$text = strtoupper($firstname[0].$lastname[0]);
|
||||
$text = strtoupper(mb_substr($firstname, 0, 1).mb_substr($lastname, 0, 1));
|
||||
|
||||
//create an image
|
||||
$image = imagecreatetruecolor($_size, $_size);
|
||||
|
Loading…
Reference in New Issue
Block a user