From fcbf7a12fff1a3cd8bbace46d9b61e4ce5b6a7ce Mon Sep 17 00:00:00 2001 From: alecpl Date: Tue, 17 May 2011 15:35:14 +0000 Subject: - Fix issue which cases IMAP disconnection when encrypt() method was used (#1487900), caused by commit r4554 caused by wron patch aplication --- program/include/rcmail.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'program/include') diff --git a/program/include/rcmail.php b/program/include/rcmail.php index 8b4383e10..7ef34724e 100644 --- a/program/include/rcmail.php +++ b/program/include/rcmail.php @@ -1078,6 +1078,9 @@ class rcmail if (is_object($book)) $book->close(); + if (is_object($this->imap)) + $this->imap->close(); + // before closing the database connection, write session data if ($_SERVER['REMOTE_ADDR']) session_write_close(); @@ -1193,9 +1196,6 @@ class rcmail } } - if (is_object($this->imap)) - $this->imap->close(); - return $base64 ? base64_encode($cipher) : $cipher; } -- cgit v1.2.3