From ef22efd7c7b0a9006d43ef207450768722815453 Mon Sep 17 00:00:00 2001 From: Derek Allard Date: Thu, 20 Nov 2008 15:25:45 +0000 Subject: Added where_in to the list of expected arguments received by delete() --- system/database/DB_active_rec.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'system/database') diff --git a/system/database/DB_active_rec.php b/system/database/DB_active_rec.php index e8cefa2db..b8dce6df5 100644 --- a/system/database/DB_active_rec.php +++ b/system/database/DB_active_rec.php @@ -1374,7 +1374,7 @@ class CI_DB_active_record extends CI_DB_driver { $this->limit($limit); } - if (count($this->ar_where) == 0 && count($this->ar_like) == 0) + if (count($this->ar_where) == 0 && count($this->ar_wherein) == 0 && count($this->ar_like)) { if ($this->db_debug) { -- cgit v1.2.3-24-g4f1b