additional_plugins/serendipity_event_xmlrpc/PEAR/XML/BUNDLE_NOTICE
Grischa Brockhaus a1127c3ae5 xmlrpc: Extended PEAR library used by the plugin to support
system.multicall. This was needed for the new WP iOS client that is
calling this XMLRPC function blindly and without fallback.
2012-06-03 19:45:15 +02:00

19 lines
460 B
Plaintext

WARNING: This version is heavily patched in Server.php to support system.multicall!
So it is not that easy to update to a newer PEAR version anymore.
But as this patched version is based on the last 1.x version existing
this should not be needed.
-----------------------
OLD:
- Remove:
RPC.php:
include_once 'PEAR.php'
RPC/Server.php:
require_once 'RPC/RPC.php';
if (!class_exists('XML_RPC_Base')) {
require_once dirname(__FILE__) . '/../RPC.php';
}