diff options
author | Pierre POMES <pierre.pomes@gmail.com> | 2010-12-13 16:18:06 -0500 |
---|---|---|
committer | Pierre POMES <pierre.pomes@gmail.com> | 2010-12-13 16:18:06 -0500 |
commit | 26732357f475096b52e87bdde92a19781cb29f27 (patch) | |
tree | b750bb9fa71bfa3c7c1f9d0b8d3afa92e7452da7 /etc/inc/xmlrpc_client.inc | |
parent | c9b08a50f0ba328ac0569247eb2063d34f7e6279 (diff) | |
download | pfsense-26732357f475096b52e87bdde92a19781cb29f27.zip pfsense-26732357f475096b52e87bdde92a19781cb29f27.tar.gz |
Ticket #960. Use XMLRPC automatic base64 encoding for strings (XML_RPC_auto_base64)
Diffstat (limited to 'etc/inc/xmlrpc_client.inc')
-rw-r--r-- | etc/inc/xmlrpc_client.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/inc/xmlrpc_client.inc b/etc/inc/xmlrpc_client.inc index bac5e1f..8b8a9a2 100644 --- a/etc/inc/xmlrpc_client.inc +++ b/etc/inc/xmlrpc_client.inc @@ -228,7 +228,7 @@ if (function_exists('mb_ereg')) { * which can cause PHP's SAX-based XML parser to break? * @global boolean $GLOBALS['XML_RPC_auto_base64'] */ -$GLOBALS['XML_RPC_auto_base64'] = false; +$GLOBALS['XML_RPC_auto_base64'] = true; /** @@ -2077,4 +2077,4 @@ function XML_RPC_encode($php_val) * End: */ -?>
\ No newline at end of file +?> |