diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-05-25 15:46:20 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-05-25 15:46:20 +0200 |
commit | 00cb22cf92d267fe602ad37336fba4454c6aa896 (patch) | |
tree | 3e7fcfddc9f843d2d25b0d126f3f3f325c5d7e6d /program/lib/Roundcube/rcube_cache_shared.php | |
parent | 50abd557184326f173357b50e7593dc3f452be91 (diff) |
Expunge all cache instances in shutdown
Diffstat (limited to 'program/lib/Roundcube/rcube_cache_shared.php')
-rw-r--r-- | program/lib/Roundcube/rcube_cache_shared.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/Roundcube/rcube_cache_shared.php b/program/lib/Roundcube/rcube_cache_shared.php index bef9e85f2..c43d2cad1 100644 --- a/program/lib/Roundcube/rcube_cache_shared.php +++ b/program/lib/Roundcube/rcube_cache_shared.php @@ -191,7 +191,7 @@ class rcube_cache */ function expunge() { - if ($this->type == 'db' && $this->db) { + if ($this->type == 'db' && $this->db && $this->ttl) { $this->db->query( "DELETE FROM " . $this->table . " WHERE cache_key LIKE ?" |