From 0874daa67b59974445e5b471535ad652ec2dec53 Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Thu, 11 Dec 2008 09:57:26 -0700 Subject: [PATCH] Fix Bug #7771 - undefined error. --- framework/Imap_Client/lib/Horde/Imap/Client/Socket.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/Imap_Client/lib/Horde/Imap/Client/Socket.php b/framework/Imap_Client/lib/Horde/Imap/Client/Socket.php index d3ddff0a5..4a7495fb7 100644 --- a/framework/Imap_Client/lib/Horde/Imap/Client/Socket.php +++ b/framework/Imap_Client/lib/Horde/Imap/Client/Socket.php @@ -3267,7 +3267,7 @@ class Horde_Imap_Client_Socket extends Horde_Imap_Client_Base { if (!empty($ob['response'])) { $this->_parseStatusResponse($ob); - } else { + } elseif ($ob['token']) { // First, catch all untagged responses where the name appears // first on the line. switch (strtoupper($ob['token'][0])) { -- 2.11.0