We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c7fb88 commit d428215Copy full SHA for d428215
Database.php
@@ -409,7 +409,7 @@ public function in($field, $values = [])
409
{
410
if(count($values))
411
412
- $this->_query .= " $field IN (" . implode(",", $values) . ")";
+ $this->_query .= " $this->_where $field IN (" . implode(",", $values) . ")";
413
$this->_where = "AND";
414
}
415
@@ -424,7 +424,7 @@ public function notIn($field, $values = [])
424
425
426
427
- $this->_query .= " $field NOT IN (" . implode(",", $values) . ")";
+ $this->_query .= " $this->_where $field NOT IN (" . implode(",", $values) . ")";
428
429
430
0 commit comments