From 1f385b8a3d707149d801ef8e183ceecc4da5c9bd Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Tue, 17 May 2011 06:38:42 -0400 Subject: [PATCH] - Make update_cahce() method to be publicly available --- 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 eb987dc..d73792c 100644 --- a/program/include/rcube_imap.php +++ b/program/include/rcube_imap.php @@ -3768,9 +3768,9 @@ * * @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; -- Gitblit v1.9.1