diff options
author | alecpl <alec@alec.pl> | 2011-05-17 10:38:42 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2011-05-17 10:38:42 +0000 |
commit | 1f385b8a3d707149d801ef8e183ceecc4da5c9bd (patch) | |
tree | c3e4a5815b0cd2e260e0c078ce284f72c28e2297 /program | |
parent | 74bc4acd2776ba2f63976897be58a18549a4b2d2 (diff) |
- Make update_cahce() method to be publicly available
Diffstat (limited to 'program')
-rw-r--r-- | program/include/rcube_imap.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/include/rcube_imap.php b/program/include/rcube_imap.php index eb987dca0..d73792cf7 100644 --- a/program/include/rcube_imap.php +++ b/program/include/rcube_imap.php @@ -3768,9 +3768,9 @@ class rcube_imap * * @param string $key Cache key * @param mixed $data Data - * @access private + * @access public */ - private function update_cache($key, $data) + function update_cache($key, $data) { $this->cache[$key] = $data; $this->cache_changed = true; |