From 5a045be88a7f849d5f083b9358eea9058ca453cb Mon Sep 17 00:00:00 2001 From: PiBa-NL Date: Tue, 2 Feb 2016 21:25:14 +0100 Subject: [PATCH] xmlrpc_client.inc, silence the php 'crash' error, sync errors are reported through file-notices already. --- src/etc/inc/xmlrpc_client.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/etc/inc/xmlrpc_client.inc b/src/etc/inc/xmlrpc_client.inc index a701419316..a604b6a765 100644 --- a/src/etc/inc/xmlrpc_client.inc +++ b/src/etc/inc/xmlrpc_client.inc @@ -928,7 +928,7 @@ class XML_RPC_Client extends XML_RPC_Base { $ctx = stream_context_create($ctx_options); - $fp = stream_socket_client("{$this->protocol}{$server}:{$port}", + $fp = @stream_socket_client("{$this->protocol}{$server}:{$port}", $this->errno, $this->errstr, ($timeout > 0 ? $timeout : ini_get("default_socket_timeout")), STREAM_CLIENT_CONNECT, $ctx);