Fixed typo

This commit is contained in:
Mark van Driel 2016-07-27 20:27:15 +02:00
parent 5caac5f340
commit 4dc8e54131

View file

@ -2701,7 +2701,7 @@ class DboSource extends DataSource {
continue;
} elseif (is_numeric($key) && is_string($value)) {
$out[] = $this->_quoteFields($value);
} elseif ((is_numeric($key) && is_array($value)) || in_array(strtolower(trim($key)), $bool)) {
} elseif ((is_numeric($key) && is_array($value)) || in_array(strtolower(trim($key)), $this->_sqlBoolOps)) {
if (in_array(strtolower(trim($key)), $this->_sqlBoolOps)) {
$join = ' ' . strtoupper($key) . ' ';
} else {