summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mail-client/roundcube/files/roundcube-0.5.2-fix-imap-disconnect.patch')
-rw-r--r--mail-client/roundcube/files/roundcube-0.5.2-fix-imap-disconnect.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/mail-client/roundcube/files/roundcube-0.5.2-fix-imap-disconnect.patch b/mail-client/roundcube/files/roundcube-0.5.2-fix-imap-disconnect.patch
deleted file mode 100644
index 4a03a01f2178..000000000000
--- a/mail-client/roundcube/files/roundcube-0.5.2-fix-imap-disconnect.patch
+++ /dev/null
@@ -1,26 +0,0 @@
---- CHANGELOG
-+++ CHANGELOG
-@@ -2,4 +2,5 @@
- ===========================
-
-+- Fix issue which cases IMAP disconnection when encrypt() method was used (#1487900)
- - Fix some CSS issues in Settings for Internet Explorer
- - Fixed handling of folder with name "0" in folder selector
---- program/include/rcmail.php
-+++ program/include/rcmail.php
-@@ -1079,4 +1079,7 @@
- $book->close();
-
-+ if (is_object($this->imap))
-+ $this->imap->close();
-+
- // before closing the database connection, write session data
- if ($_SERVER['REMOTE_ADDR'])
-@@ -1194,7 +1197,4 @@
- }
-
-- if (is_object($this->imap))
-- $this->imap->close();
--
- return $base64 ? base64_encode($cipher) : $cipher;
- }