Suppress fopen() errors for IMAP debugging
authorMichael M Slusarz <slusarz@curecanti.org>
Thu, 22 Apr 2010 16:55:01 +0000 (10:55 -0600)
committerMichael M Slusarz <slusarz@curecanti.org>
Thu, 22 Apr 2010 17:33:29 +0000 (11:33 -0600)
framework/Imap_Client/lib/Horde/Imap/Client/Base.php

index fc6304c..c8ad696 100644 (file)
@@ -180,7 +180,7 @@ abstract class Horde_Imap_Client_Base
         }
 
         if (!empty($this->_params['debug'])) {
-            $this->_debug = fopen($this->_params['debug'], 'a');
+            $this->_debug = @fopen($this->_params['debug'], 'a');
         }
     }