diff options
author | Robin Sowell <robin.sowell@ellislab.com> | 2010-04-16 22:13:23 +0200 |
---|---|---|
committer | Robin Sowell <robin.sowell@ellislab.com> | 2010-04-16 22:13:23 +0200 |
commit | ff3ecaede7e7154d1897307a390919b655b15096 (patch) | |
tree | 9483d4695508d94f8d6a965d0a3fa200b5bfed63 /system | |
parent | f82e51cd8f46b112c3c400d43db9044854a8e805 (diff) |
Added class var xss_clean to the XML_RPC_Response class to prevent php error. Not noted in changelog, as I figure it's covered by the original note about adding xss clean at all.
Diffstat (limited to 'system')
-rw-r--r-- | system/libraries/Xmlrpc.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/system/libraries/Xmlrpc.php b/system/libraries/Xmlrpc.php index ee04400f5..e2b149b73 100644 --- a/system/libraries/Xmlrpc.php +++ b/system/libraries/Xmlrpc.php @@ -434,6 +434,7 @@ class XML_RPC_Response var $errno = 0; var $errstr = ''; var $headers = array(); + var $xss_clean = TRUE; function XML_RPC_Response($val, $code = 0, $fstr = '') { |