Skip to content

Commit

Permalink
bypass completely autoloading for old-style api
Browse files Browse the repository at this point in the history
  • Loading branch information
gggeek committed Dec 16, 2014
1 parent befde0d commit a68b8ee
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion lib/xmlrpc.inc
Expand Up @@ -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');
Expand All @@ -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();
Expand Down

0 comments on commit a68b8ee

Please sign in to comment.