mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Fixed typo
This commit is contained in:
parent
5caac5f340
commit
4dc8e54131
1 changed files with 1 additions and 1 deletions
|
@ -2701,7 +2701,7 @@ class DboSource extends DataSource {
|
||||||
continue;
|
continue;
|
||||||
} elseif (is_numeric($key) && is_string($value)) {
|
} elseif (is_numeric($key) && is_string($value)) {
|
||||||
$out[] = $this->_quoteFields($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)) {
|
if (in_array(strtolower(trim($key)), $this->_sqlBoolOps)) {
|
||||||
$join = ' ' . strtoupper($key) . ' ';
|
$join = ' ' . strtoupper($key) . ' ';
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue