1
0
mirror of https://github.com/anope/anope.git synced 2026-06-30 21:26:37 +02:00

Remove workaround that is no longer needed

This workaround was required previously but breaks the code with the corrections to the XML-RPC response.
This commit is contained in:
Sebastian
2015-04-01 23:27:44 +02:00
parent 5fc72660e4
commit a718223585
+2 -2
View File
@@ -33,8 +33,8 @@ class AnopeXMLRPC
$inbuf = file_get_contents($this->Host, false, $context);
$response = xmlrpc_decode($inbuf);
if (isset($response[0]))
return $response[0];
if (isset($response))
return $response;
return NULL;
}