From: gggeek Date: Tue, 16 Dec 2014 01:14:44 +0000 (+0000) Subject: bypass completely autoloading for old-style api X-Git-Tag: 4.0.0-alpha^2~195 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=a68b8ee4a72d20ad75377cacb7098054249f91ca;p=plcapi.git bypass completely autoloading for old-style api --- diff --git a/lib/xmlrpc.inc b/lib/xmlrpc.inc index 57a0adc4..8f081279 100644 --- a/lib/xmlrpc.inc +++ b/lib/xmlrpc.inc @@ -40,6 +40,8 @@ * * This file is only used to insure backwards compatibility * with the API of the library <= rev. 3 + * + * If it is included, the library will work without any further autoloading *****************************************************************************/ include_once(__DIR__.'/../src/PhpXmlRpc.php'); @@ -48,7 +50,10 @@ include_once(__DIR__.'/../src/Request.php'); include_once(__DIR__.'/../src/Response.php'); include_once(__DIR__.'/../src/Client.php'); include_once(__DIR__.'/../src/Encoder.php'); - +include_once(__DIR__.'/../src/Helper/Date.php'); +include_once(__DIR__.'/../src/Helper/Charset.php'); +include_once(__DIR__.'/../src/Helper/Http.php'); +include_once(__DIR__.'/../src/Helper/XMLParser.php'); /* Expose the global variables which used to be defined */ PhpXmlRpc\PhpXmlRpc::exportGlobals();