Show lavatar text in caps

This commit is contained in:
Hadi Nategh 2018-08-13 11:53:41 +02:00
parent e88450037a
commit 29337d79d1

View File

@ -80,7 +80,7 @@ class avatar
$bgcolor = $_color ? $_color : self::_getBgColor($firstname.$lastname.$id);
// Letters to be shown
$text = $firstname[0].$lastname[0];
$text = strtoupper($firstname[0].$lastname[0]);
//create an image
$image = imagecreatetruecolor($_size, $_size);