FilterQueryString: fix typo

This commit is contained in:
Alexander A. Klimov 2017-12-05 12:23:10 +01:00 committed by Thomas Gelf
parent 7ae6e537d1
commit 7f5962dfae
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ class FilterQueryString
} }
} }
if ($op === null && count($filters > 0) && ($next === '&' || $next === '|')) { if ($op === null && count($filters) > 0 && ($next === '&' || $next === '|')) {
$op = $next; $op = $next;
continue; continue;
} }