From: Michael M Slusarz Date: Thu, 11 Dec 2008 16:57:26 +0000 (-0700) Subject: Fix Bug #7771 - undefined error. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=0874daa67b59974445e5b471535ad652ec2dec53;p=horde.git Fix Bug #7771 - undefined error. --- 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])) {