Data\Filter: SORT_NATURAL only for PHP >= 5.4
This commit is contained in:
parent
5851886877
commit
f0ca81d7af
|
@ -79,7 +79,7 @@ abstract class Filter
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
krsort($operators, SORT_NATURAL);
|
krsort($operators, version_compare(PHP_VERSION, '5.4.0') >= 0 ? SORT_NATURAL : SORT_REGULAR);
|
||||||
foreach ($operators as $id => $operator) {
|
foreach ($operators as $id => $operator) {
|
||||||
$f = $filter->getById($id);
|
$f = $filter->getById($id);
|
||||||
if ($f->getOperatorName() !== $operator) {
|
if ($f->getOperatorName() !== $operator) {
|
||||||
|
|
Loading…
Reference in New Issue