Shouldn't let PHP generate an error in this case, if we are handling a

connection failure
This commit is contained in:
jangliss 2004-06-13 23:16:46 +00:00
parent 99e5beba64
commit c8be9a65a7

View file

@ -563,7 +563,7 @@ function sqimap_create_stream($server,$port,$tls=false) {
}
}
$imap_stream = fsockopen($server, $port, $error_number, $error_string, 15);
$imap_stream = @fsockopen($server, $port, $error_number, $error_string, 15);
/* Do some error correction */
if (!$imap_stream) {