mb string functions

This commit is contained in:
yuri
2018-06-21 16:10:16 +03:00
parent 0b8d43f734
commit b58d958f51
2 changed files with 2 additions and 2 deletions
@@ -1646,7 +1646,7 @@ class Base
if (!$skipWidlcards) {
if (
strlen($textFilter) >= $textFilterContainsMinLength
mb_strlen($textFilter) >= $textFilterContainsMinLength
&&
(
$attributeType == 'text'
+1 -1
View File
@@ -336,7 +336,7 @@ abstract class Base
}
$columns = substr($rest, 0, $delimiterPosition);
$query = substr($rest, $delimiterPosition + 1);
$query = mb_substr($rest, $delimiterPosition + 1);
$columnList = explode(',', $columns);