summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2011-05-18 21:18:54 +0000
committerTim Harder <radhermit@gentoo.org>2011-05-18 21:18:54 +0000
commited474c43192d5ab4c027b8ba01c6d96eef354c66 (patch)
treedb57fcccbfb0918cd1d8b9a24da2ba84ea23f2cd /mail-client/roundcube/files
parentFixing prefix-related bug #367461, thanks to Steven Trogdon <strogdon@d.umn.edu> (diff)
downloadgentoo-2-ed474c43192d5ab4c027b8ba01c6d96eef354c66.tar.gz
gentoo-2-ed474c43192d5ab4c027b8ba01c6d96eef354c66.tar.bz2
gentoo-2-ed474c43192d5ab4c027b8ba01c6d96eef354c66.zip
Revision bump and remove old. Apply upstream fix for bug #365851 by Stuart Shelton.
(Portage version: 2.2.0_alpha33/cvs/Linux x86_64)
Diffstat (limited to 'mail-client/roundcube/files')
-rw-r--r--mail-client/roundcube/files/roundcube-0.5.2-fix-imap-disconnect.patch26
1 files changed, 26 insertions, 0 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
new file mode 100644
index 000000000000..4a03a01f2178
--- /dev/null
+++ b/mail-client/roundcube/files/roundcube-0.5.2-fix-imap-disconnect.patch
@@ -0,0 +1,26 @@
+--- 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;
+ }