소스 검색

Suppress the PHP error message if server is not reachable
(We output our own Error Message about it later)

Jimmy Conner 21 년 전
부모
커밋
baf61c3bd5
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      plugins/mail_fetch/class.POP3.php

+ 1 - 1
plugins/mail_fetch/class.POP3.php

@@ -90,7 +90,7 @@ class POP3 {
             return false;
         }
 
-        $fp = fsockopen("$server", $port, $errno, $errstr);
+        $fp = @fsockopen("$server", $port, $errno, $errstr);
 
         if(!$fp) {
             $this->ERROR = _("POP3 connect:") . ' ' . _("Error ") . "[$errno] [$errstr]";