diff options
author | Remi Collet <remi@remirepo.net> | 2019-11-04 08:11:06 +0100 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2019-11-04 08:11:06 +0100 |
commit | 327e3f713a2003a24a52a8ec3f8a7d29c4db6d48 (patch) | |
tree | 63c675024a4da35f919965073ef9e22ce1081b69 /9.patch | |
parent | eccf99a44f6af4ea63520079d35a390bfddd017a (diff) |
v2.30.1
Diffstat (limited to '9.patch')
-rw-r--r-- | 9.patch | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/9.patch b/9.patch deleted file mode 100644 index 4ecf872..0000000 --- a/9.patch +++ /dev/null @@ -1,22 +0,0 @@ -From fac0813d75d9ab552985667eb4ed74f188679e65 Mon Sep 17 00:00:00 2001 -From: Remi Collet <remi@remirepo.net> -Date: Tue, 1 Oct 2019 13:38:23 +0200 -Subject: [PATCH] Trying to access array offset on value of type null (7.4) - ---- - lib/Horde/Imap/Client/Socket/ClientSort.php | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/lib/Horde/Imap/Client/Socket/ClientSort.php b/lib/Horde/Imap/Client/Socket/ClientSort.php -index 4030492a..a93853ab 100644 ---- a/lib/Horde/Imap/Client/Socket/ClientSort.php -+++ b/lib/Horde/Imap/Client/Socket/ClientSort.php -@@ -110,7 +110,7 @@ public function clientSort($res, $opts) - } - - $mbox = $this->_socket->currentMailbox(); -- $fetch_res = $this->_socket->fetch($mbox['mailbox'], $query, array( -+ $fetch_res = $this->_socket->fetch(isset($mbox['mailbox']) ? $mbox['mailbox'] : null, $query, array( - 'ids' => $res - )); - |