summaryrefslogtreecommitdiffstats
path: root/3rdparty/XML/RPC.php
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/XML/RPC.php')
-rw-r--r--3rdparty/XML/RPC.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/3rdparty/XML/RPC.php b/3rdparty/XML/RPC.php
index 2cdb44f4aea..096b22a0ab5 100644
--- a/3rdparty/XML/RPC.php
+++ b/3rdparty/XML/RPC.php
@@ -1365,7 +1365,7 @@ class XML_RPC_Message extends XML_RPC_Base
!preg_match('@^HTTP/[0-9\.]+ 10[0-9]([A-Za-z ]+)?[\r\n]+HTTP/[0-9\.]+ 200@', $data))
{
$errstr = substr($data, 0, strpos($data, "\n") - 1);
- error_log('HTTP error, got response: ' . $errstr);
+ if(defined("DEBUG") && DEBUG) {error_log('HTTP error, got response: ' . $errstr);}
$r = new XML_RPC_Response(0, $XML_RPC_err['http_error'],
$XML_RPC_str['http_error'] . ' (' .
$errstr . ')');
@@ -1396,7 +1396,7 @@ class XML_RPC_Message extends XML_RPC_Base
xml_error_string(xml_get_error_code($parser_resource)),
xml_get_current_line_number($parser_resource));
}
- error_log($errstr);
+ if(defined("DEBUG") && DEBUG) {error_log($errstr);}
$r = new XML_RPC_Response(0, $XML_RPC_err['invalid_return'],
$XML_RPC_str['invalid_return']);
xml_parser_free($parser_resource);