diff options
author | alecpl <alec@alec.pl> | 2011-05-21 18:04:51 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2011-05-21 18:04:51 +0000 |
commit | bc8c2c57880523472b30f475d566a8133e2d2e20 (patch) | |
tree | 7f7656cf9f2626755a4daddf3d87fda62048078d | |
parent | b9e42ecb46a156a1b909e816986031a400352457 (diff) |
- Fix s/pattern/prefix/ in clear_cache()
-rw-r--r-- | program/include/rcube_imap.php | 2 |
1 files changed, 1 insertions, 1 deletions
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); } } |