bypass completely autoloading for old-style api
authorgggeek <giunta.gaetano@gmail.com>
Tue, 16 Dec 2014 01:14:44 +0000 (01:14 +0000)
committergggeek <giunta.gaetano@gmail.com>
Tue, 16 Dec 2014 01:14:44 +0000 (01:14 +0000)
lib/xmlrpc.inc

index 57a0adc..8f08127 100644 (file)
@@ -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();