From: Michael M Slusarz Date: Fri, 16 Oct 2009 09:08:25 +0000 (-0600) Subject: Silence errors on bad stream X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=1ba857d0e16741ed62d578e3578689f46ddabb21;p=horde.git Silence errors on bad stream --- diff --git a/framework/Imap_Client/lib/Horde/Imap/Client/Socket.php b/framework/Imap_Client/lib/Horde/Imap/Client/Socket.php index 78e533b6d..0a5d9475d 100644 --- a/framework/Imap_Client/lib/Horde/Imap/Client/Socket.php +++ b/framework/Imap_Client/lib/Horde/Imap/Client/Socket.php @@ -605,7 +605,7 @@ class Horde_Imap_Client_Socket extends Horde_Imap_Client_Base } catch (Horde_Imap_Client_Exception $e) {} } unset($this->_temp['logout']); - fclose($this->_stream); + @fclose($this->_stream); $this->_stream = null; } }