diff options
author | Pascal Kriete <pascal.kriete@ellislab.com> | 2011-04-05 20:58:04 +0200 |
---|---|---|
committer | Pascal Kriete <pascal.kriete@ellislab.com> | 2011-04-05 20:58:04 +0200 |
commit | 6984aaf27f53b91ab1eafcdccd5fb871dfcd5f18 (patch) | |
tree | d0dc8f1407fdd82c7c6605fae37780f4d34f31b2 /system/libraries/Xmlrpc.php | |
parent | 14a0ac63a9dfb72e4681c37f7727cd48882152bd (diff) |
Removing security loading calls.
Diffstat (limited to 'system/libraries/Xmlrpc.php')
-rw-r--r-- | system/libraries/Xmlrpc.php | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/system/libraries/Xmlrpc.php b/system/libraries/Xmlrpc.php index a24bca9b6..5da6ea6ae 100644 --- a/system/libraries/Xmlrpc.php +++ b/system/libraries/Xmlrpc.php @@ -504,12 +504,7 @@ class XML_RPC_Response function decode($array=FALSE) { $CI =& get_instance(); - - if ($this->xss_clean && ! isset($CI->security)) - { - $CI->load->library('security'); - } - + if ($array !== FALSE && is_array($array)) { while (list($key) = each($array)) @@ -1121,12 +1116,7 @@ class XML_RPC_Message extends CI_Xmlrpc function output_parameters($array=FALSE) { $CI =& get_instance(); - - if ($this->xss_clean && ! isset($CI->security)) - { - $CI->load->library('security'); - } - + if ($array !== FALSE && is_array($array)) { while (list($key) = each($array)) |