From 23012599aa8f668b515387eccae6bc540e136bd8 Mon Sep 17 00:00:00 2001 From: Rick Ellis Date: Sat, 18 Oct 2008 02:11:06 +0000 Subject: Oops! I missed resetting the cache array in the flush function in my last commit. --- system/database/DB_active_rec.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'system/database') diff --git a/system/database/DB_active_rec.php b/system/database/DB_active_rec.php index 5b118ce1d..d2d2632a7 100644 --- a/system/database/DB_active_rec.php +++ b/system/database/DB_active_rec.php @@ -1665,9 +1665,10 @@ class CI_DB_active_record extends CI_DB_driver { 'ar_cache_where' => array(), 'ar_cache_like' => array(), 'ar_cache_groupby' => array(), - 'ar_cache_having' =>array(), + 'ar_cache_having' => array(), 'ar_cache_orderby' => array(), - 'ar_cache_set' => array() + 'ar_cache_set' => array(), + 'ar_cache_exists' => array() ); $this->_reset_run($ar_reset_items); -- cgit v1.2.3-24-g4f1b