mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-12 11:40:19 +08:00
Merge branch 'master' of git.yiisoft.com:yii2 into console-color
This commit is contained in:
@@ -565,9 +565,7 @@ class QueryBuilder extends \yii\base\Object
|
|||||||
|
|
||||||
list($column, $values) = $operands;
|
list($column, $values) = $operands;
|
||||||
|
|
||||||
if (!is_array($values)) {
|
$values = (array)$values;
|
||||||
$values = array($values);
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($values === array() || $column === array()) {
|
if ($values === array() || $column === array()) {
|
||||||
return $operator === 'in' ? '0=1' : '';
|
return $operator === 'in' ? '0=1' : '';
|
||||||
@@ -633,9 +631,7 @@ class QueryBuilder extends \yii\base\Object
|
|||||||
|
|
||||||
list($column, $values) = $operands;
|
list($column, $values) = $operands;
|
||||||
|
|
||||||
if (!is_array($values)) {
|
$values = (array)$values;
|
||||||
$values = array($values);
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($values === array()) {
|
if ($values === array()) {
|
||||||
return $operator === 'LIKE' || $operator === 'OR LIKE' ? '0=1' : '';
|
return $operator === 'LIKE' || $operator === 'OR LIKE' ? '0=1' : '';
|
||||||
|
|||||||
Reference in New Issue
Block a user