From b8ea16017804e20997cd29fa3b9cc4c1b91d9e8a Mon Sep 17 00:00:00 2001 From: thomascube Date: Thu, 22 Mar 2012 19:19:50 +0000 Subject: [PATCH] Always return the correct connection state --- program/include/rcmail.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/program/include/rcmail.php b/program/include/rcmail.php index 6320e5e3f..a86729156 100644 --- a/program/include/rcmail.php +++ b/program/include/rcmail.php @@ -728,11 +728,10 @@ class rcmail } else { $this->set_storage_prop(); - return $storage->is_connected(); } } - return false; + return $storage->is_connected(); }