diff options
author | Rick Ellis <rick.ellis@ellislab.com> | 2008-10-18 04:11:06 +0200 |
---|---|---|
committer | Rick Ellis <rick.ellis@ellislab.com> | 2008-10-18 04:11:06 +0200 |
commit | 23012599aa8f668b515387eccae6bc540e136bd8 (patch) | |
tree | 158de92e799dca4c9cb065a6ad7d0b5e5ece9141 /system/database | |
parent | 392f09ddfc99bed44ee69715626a49b2ad5f3e47 (diff) |
Oops! I missed resetting the cache array in the flush function in my last commit.
Diffstat (limited to 'system/database')
-rw-r--r-- | system/database/DB_active_rec.php | 5 |
1 files changed, 3 insertions, 2 deletions
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);
|