Fix bug where all literal "false" was interpreted as true
This commit is contained in:
parent
cebbdfdf59
commit
836dae9c18
2
base.php
2
base.php
|
@ -408,7 +408,7 @@ function matches_comparing_expression($expr, $text) {
|
|||
$result = str_replace('OR', '|', $result);
|
||||
$result = str_replace('AND', '&', $result);
|
||||
eval('$result = '.$result.';');
|
||||
return $result === 0 ? false : true;
|
||||
return in_array($result, [0,false]) ? false : true;
|
||||
}
|
||||
|
||||
function content_cache__exists($key) {
|
||||
|
|
Loading…
Reference in New Issue