gunnar: server/php-kolab/Kolab_Storage/patches/Kolab_Storage-0.5.0 Kolab_Storage_0.5.0_p2.patch, NONE, 1.1

cvs at kolab.org cvs at kolab.org
Fri Jun 25 07:10:15 CEST 2010


Author: gunnar

Update of /kolabrepository/server/php-kolab/Kolab_Storage/patches/Kolab_Storage-0.5.0
In directory doto:/tmp/cvs-serv28658/d/Kolab_Storage/patches/Kolab_Storage-0.5.0

Added Files:
	Kolab_Storage_0.5.0_p2.patch 
Log Message:
kolab/issue4169 (kolab-webclient sometimes shows a blank page on login) 

--- NEW FILE: Kolab_Storage_0.5.0_p2.patch ---
From: Gunnar Wrobel <wrobel at pardus.de>
Subject: [PATCH] Kolab_Storage_0.5.0_p2.patch

Avoid PEAR Errors in the session data.

STATUS: MERGED

REF: https://issues.kolab.org/issue4169

Signed-off-by: Gunnar Wrobel <wrobel at pardus.de>

--- a/framework/Kolab_Storage/lib/Horde/Kolab/Storage/List.php	22 Jun 2010 09:31:39 -0000	1.3.2.9
+++ b/framework/Kolab_Storage/lib/Horde/Kolab/Storage/List.php	25 Jun 2010 04:53:49 -0000	1.3.2.10
@@ -168,10 +168,11 @@
             }
 
             // Obtain a list of all folders the current user has access to
-            $this->_list = $imap->getMailboxes();
-            if (is_a($this->_list, 'PEAR_Error')) {
-                return $this->_list;
+            $list = $imap->getMailboxes();
+            if (is_a($list, 'PEAR_Error')) {
+                return $list;
             }
+            $this->_list = $list;
         }
         return $this->_list;
     }





More information about the commits mailing list