|
|
@@ -238,7 +238,8 @@ class OrderIssueFilters
|
|
|
if ($this->isSearchLike($param)) {
|
|
|
$query->where($column, 'like', $param);
|
|
|
} else {
|
|
|
- $query->whereIn($column, array_filter(preg_split('/[,, ]+/is', $param)));
|
|
|
+ mb_regex_encoding('utf-8');
|
|
|
+ $query->whereIn($column, array_filter(preg_split('/[,, ]+/u', $param,-1,PREG_SPLIT_NO_EMPTY)));
|
|
|
}
|
|
|
return $query;
|
|
|
}
|