From 4147c388380ab872b4e0ba080fa019a5a4731302 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Calvo?= Date: Sun, 2 Apr 2017 15:17:31 +0200 Subject: [PATCH] [ticket/15150] Hide errors if function stream_socket_client have been disabled PHPBB3-15150 --- phpBB/includes/functions_jabber.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/includes/functions_jabber.php b/phpBB/includes/functions_jabber.php index a4fbc90d57..0ef4797886 100644 --- a/phpBB/includes/functions_jabber.php +++ b/phpBB/includes/functions_jabber.php @@ -266,7 +266,7 @@ class jabber $socket_context = stream_context_create($options); - if ($this->connection = stream_socket_client($remote_socket, $errorno, $errorstr, $this->timeout, STREAM_CLIENT_CONNECT, $socket_context)) + if ($this->connection = @stream_socket_client($remote_socket, $errorno, $errorstr, $this->timeout, STREAM_CLIENT_CONNECT, $socket_context)) { socket_set_blocking($this->connection, 0); socket_set_timeout($this->connection, 60);