diff options
author | thomascube <thomas@roundcube.net> | 2012-01-18 15:30:41 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2012-01-18 15:30:41 +0000 |
commit | 37cec41ba59f519a49d7d9d5489746567b9617d0 (patch) | |
tree | 526a664902a78bae0438500d5fb81ab38cbdf1e2 | |
parent | f295d2b5b01790995d2f507018d6018ae7eb537e (diff) |
rcube_imap::update_cache() is used by some plugins
-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 3e2abe71e..234e8d884 100644 --- a/program/include/rcube_imap.php +++ b/program/include/rcube_imap.php @@ -3553,7 +3553,7 @@ class rcube_imap extends rcube_storage * @param string $key Cache key * @param mixed $data Data */ - protected function update_cache($key, $data) + public function update_cache($key, $data) { if ($cache = $this->get_cache_engine()) { $cache->set($key, $data); |