Update Stemmer.php

This commit is contained in:
Vitaliy Klimin 2018-01-11 19:34:51 +05:00 committed by GitHub
parent b3d54cec21
commit 2d504dac47
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -95,7 +95,7 @@ class Stemmer
$prefix = mb_substr($word, 0, $region, 'UTF-8'); $prefix = mb_substr($word, 0, $region, 'UTF-8');
$ending = mb_substr($word, mb_strlen($prefix, 'UTF-8'), null, 'UTF-8'); $ending = mb_substr($word, mb_strlen($prefix, 'UTF-8'), null, 'UTF-8');
if (is_array($regex)) { if (is_array($regex)) {
if (preg_match('/.+[а|я]' . $regex[0] . '/ui', $ending)) { if (preg_match('/.+[ая]' . $regex[0] . '/ui', $ending)) {
$word = $prefix . preg_replace('/' . $regex[0] . '/ui', '', $ending); $word = $prefix . preg_replace('/' . $regex[0] . '/ui', '', $ending);
return true; return true;
} }