summaryrefslogtreecommitdiffstats
path: root/system/database/DB_cache.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2012-04-03 15:21:48 +0200
committerAndrey Andreev <narf@bofh.bg>2012-04-03 15:21:48 +0200
commitfd6c2bc7ed0ce474ac08fefb3efe88288368da98 (patch)
treea9f79a0ebda991c138cbe2cc2f4e2b52c35b46e2 /system/database/DB_cache.php
parent1b815532378bd444347d1bc741771e13108147b6 (diff)
Fix issue #1238
Diffstat (limited to 'system/database/DB_cache.php')
-rw-r--r--system/database/DB_cache.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/DB_cache.php b/system/database/DB_cache.php
index 58e6968c0..ff942856b 100644
--- a/system/database/DB_cache.php
+++ b/system/database/DB_cache.php
@@ -177,7 +177,7 @@ class CI_DB_Cache {
*/
public function delete_all()
{
- delete_files($this->db->cachedir, TRUE);
+ delete_files($this->db->cachedir, TRUE, 0, TRUE);
}
}