diff options
author | paulburdick <devnull@localhost> | 2008-01-23 00:46:17 +0100 |
---|---|---|
committer | paulburdick <devnull@localhost> | 2008-01-23 00:46:17 +0100 |
commit | d12555b899eb32fc27e021160611251aeeeca49f (patch) | |
tree | b005646a9ffa9d85ec186d478e1911dc053c2354 /system | |
parent | 3b11868b3aa56c83419d904435a5b7dfbf997063 (diff) |
http://codeigniter.com/bug_tracker/bug/3249/
Modification so that a second calling of request() will reset the $this->data array. In the future,
it might be prudent to create an initialization() method instead.
Diffstat (limited to 'system')
-rw-r--r-- | system/libraries/Xmlrpc.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/system/libraries/Xmlrpc.php b/system/libraries/Xmlrpc.php index 91e3809a8..f90ee56b1 100644 --- a/system/libraries/Xmlrpc.php +++ b/system/libraries/Xmlrpc.php @@ -204,6 +204,8 @@ class CI_Xmlrpc { // Send Error
}
+ $this->data = array();
+
foreach($incoming as $key => $value)
{
$this->data[$key] = $this->values_parsing($value);
|