diff options
author | alecpl <alec@alec.pl> | 2012-04-16 11:59:08 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2012-04-16 11:59:08 +0000 |
commit | be98dfc2c0bdc4f911c6daa94e3fddc29afc89a8 (patch) | |
tree | 05907bc164d7c41157ad1087be672d7bbcbac980 /program/include/rcube_cache.php | |
parent | 1aceb9cec82639250a603aa0806f0399f7bae68d (diff) |
- Replace some references to rcmail with rcube
Diffstat (limited to 'program/include/rcube_cache.php')
-rw-r--r-- | program/include/rcube_cache.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/program/include/rcube_cache.php b/program/include/rcube_cache.php index 3e6bc0f32..6d7a9eacd 100644 --- a/program/include/rcube_cache.php +++ b/program/include/rcube_cache.php @@ -66,12 +66,12 @@ class rcube_cache */ function __construct($type, $userid, $prefix='', $ttl=0, $packed=true) { - $rcmail = rcube::get_instance(); - $type = strtolower($type); + $rcube = rcube::get_instance(); + $type = strtolower($type); if ($type == 'memcache') { $this->type = 'memcache'; - $this->db = $rcmail->get_memcache(); + $this->db = $rcube->get_memcache(); } else if ($type == 'apc') { $this->type = 'apc'; @@ -79,7 +79,7 @@ class rcube_cache } else { $this->type = 'db'; - $this->db = $rcmail->get_dbh(); + $this->db = $rcube->get_dbh(); } $this->userid = (int) $userid; |