summaryrefslogtreecommitdiffstats
path: root/system/database/DB_cache.php
diff options
context:
space:
mode:
authoradmin <devnull@localhost>2006-10-06 19:29:12 +0200
committeradmin <devnull@localhost>2006-10-06 19:29:12 +0200
commitfd2750b8f85b4f204e536d255742e18018c3f1f2 (patch)
treea804a7216f8c7e87246286df07ef7942bb43d0df /system/database/DB_cache.php
parent0a35e3d53fcfd27427bcc0a5602eaa3e289888a1 (diff)
Diffstat (limited to 'system/database/DB_cache.php')
-rw-r--r--system/database/DB_cache.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/system/database/DB_cache.php b/system/database/DB_cache.php
index 913140f6c..bb2b47b7b 100644
--- a/system/database/DB_cache.php
+++ b/system/database/DB_cache.php
@@ -97,7 +97,7 @@ class CI_DB_Cache {
return $this->obj->db->cache_off();
}
- $uri = ($this->obj->uri->segment(1) == FALSE) ? 'default_' : $this->obj->uri->segment(1).'_';
+ $uri = ($this->obj->uri->segment(1) == FALSE) ? 'default.' : $this->obj->uri->segment(1).'.';
$uri .= ($this->obj->uri->segment(2) == FALSE) ? 'index' : $this->obj->uri->segment(2);
$filepath = $uri.'/'.md5($sql);
@@ -125,7 +125,7 @@ class CI_DB_Cache {
return $this->obj->db->cache_off();
}
- $uri = ($this->obj->uri->segment(1) == FALSE) ? 'default_' : $this->obj->uri->segment(1).'_';
+ $uri = ($this->obj->uri->segment(1) == FALSE) ? 'default.' : $this->obj->uri->segment(1).'.';
$uri .= ($this->obj->uri->segment(2) == FALSE) ? 'index' : $this->obj->uri->segment(2);
$dir_path = $this->obj->db->cachedir.$uri.'/';
@@ -171,7 +171,7 @@ class CI_DB_Cache {
$segment_two = ($this->obj->uri->segment(2) == FALSE) ? 'index' : $this->obj->uri->segment(2);
}
- $dir_path = $this->obj->db->cachedir.md5($segment_one.'_'.$segment_two).'/';
+ $dir_path = $this->obj->db->cachedir.md5($segment_one.'.'.$segment_two).'/';
delete_files($dir_path, TRUE);
}