Merge pull-request #2267

This commit is contained in:
Frederic Guillot 2016-05-30 20:46:52 -04:00
commit 02cf50de80
1 changed files with 2 additions and 2 deletions

View File

@ -144,12 +144,12 @@ class LetterAvatarProvider extends Base implements AvatarProviderInterface
$str .= 'x';
$max = intval(9007199254740991 / $seed2);
for ($i = 0, $ilen = mb_strlen($str); $i < $ilen; $i++) {
for ($i = 0, $ilen = mb_strlen($str, 'UTF-8'); $i < $ilen; $i++) {
if ($hash > $max) {
$hash = intval($hash / $seed2);
}
$hash = $hash * $seed + $this->getCharCode($str[$i]);
$hash = $hash * $seed + $this->getCharCode(mb_substr($str, $i, 1, 'UTF-8'));
}
return $hash;