summaryrefslogtreecommitdiffstats
path: root/system/database/DB_cache.php
diff options
context:
space:
mode:
authoradmin <devnull@localhost>2006-10-07 05:20:32 +0200
committeradmin <devnull@localhost>2006-10-07 05:20:32 +0200
commitdee8ba233621af79fbf9b529b37a845734843fb8 (patch)
treef90c42b64127bbe3dd51d80cf5a1e84c5cafd753 /system/database/DB_cache.php
parent75198f97ba9df6e5696ac295820d9d73a4e4f441 (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 081b56584..86493e77c 100644
--- a/system/database/DB_cache.php
+++ b/system/database/DB_cache.php
@@ -97,7 +97,7 @@ class CI_DB_Cache {
return $this->CI->db->cache_off();
}
- $uri = ($this->CI->uri->segment(1) == FALSE) ? 'default.' : $this->CI->uri->segment(1).'.';
+ $uri = ($this->CI->uri->segment(1) == FALSE) ? 'default.' : $this->CI->uri->segment(1).'+';
$uri .= ($this->CI->uri->segment(2) == FALSE) ? 'index' : $this->CI->uri->segment(2);
$filepath = $uri.'/'.md5($sql);
@@ -125,7 +125,7 @@ class CI_DB_Cache {
return $this->CI->db->cache_off();
}
- $uri = ($this->CI->uri->segment(1) == FALSE) ? 'default.' : $this->CI->uri->segment(1).'.';
+ $uri = ($this->CI->uri->segment(1) == FALSE) ? 'default.' : $this->CI->uri->segment(1).'+';
$uri .= ($this->CI->uri->segment(2) == FALSE) ? 'index' : $this->CI->uri->segment(2);
$dir_path = $this->CI->db->cachedir.$uri.'/';
@@ -171,7 +171,7 @@ class CI_DB_Cache {
$segment_two = ($this->CI->uri->segment(2) == FALSE) ? 'index' : $this->CI->uri->segment(2);
}
- $dir_path = $this->CI->db->cachedir.md5($segment_one.'.'.$segment_two).'/';
+ $dir_path = $this->CI->db->cachedir.md5($segment_one.'+'.$segment_two).'/';
delete_files($dir_path, TRUE);
}