From bc8c2c57880523472b30f475d566a8133e2d2e20 Mon Sep 17 00:00:00 2001 From: alecpl Date: Sat, 21 May 2011 18:04:51 +0000 Subject: [PATCH] - Fix s/pattern/prefix/ in clear_cache() --- program/include/rcube_imap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/program/include/rcube_imap.php b/program/include/rcube_imap.php index d6e4440cc..31f196d4a 100644 --- a/program/include/rcube_imap.php +++ b/program/include/rcube_imap.php @@ -3794,7 +3794,7 @@ class rcube_imap function clear_cache($key=null, $prefix_mode=false) { if ($this->cache) { - $this->cache->remove($key, $pattern_mode); + $this->cache->remove($key, $prefix_mode); } }