From 69084a71a60e1ec6efa0ef5fd0d9a93eeca5eec7 Mon Sep 17 00:00:00 2001 From: Felipe Pena Date: Sun, 15 Feb 2009 16:03:49 +0000 Subject: [PATCH] - Supressing error message for SKIPIF check works as expected --- ext/imap/tests/skipif.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/imap/tests/skipif.inc b/ext/imap/tests/skipif.inc index dcfc3c1727..47bfd08e22 100644 --- a/ext/imap/tests/skipif.inc +++ b/ext/imap/tests/skipif.inc @@ -8,7 +8,7 @@ $password = 'p4ssw0rd'; $options = OP_HALFOPEN; // this should be enough to verify server present $retries = 0; // dont retry connect on failure -$mbox = imap_open($mailbox, $username, $password, $options, $retries); +$mbox = @imap_open($mailbox, $username, $password, $options, $retries); if (!$mbox) { die("skip could not connect to mailbox $mailbox"); } -- 2.40.0