From a68b8ee4a72d20ad75377cacb7098054249f91ca Mon Sep 17 00:00:00 2001 From: gggeek Date: Tue, 16 Dec 2014 01:14:44 +0000 Subject: [PATCH] bypass completely autoloading for old-style api --- lib/xmlrpc.inc | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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(); -- 2.47.0