Skip to content

Commit

Permalink
Fixed issue #8856: It should not add the datatype tag for the key val…
Browse files Browse the repository at this point in the history
…ue which breakes response when converted to array
  • Loading branch information
ravindrakhokharia committed Mar 25, 2014
1 parent f22c58b commit a1e06e2
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions application/libraries/BigData.php
Expand Up @@ -217,9 +217,7 @@ protected static function xmlrpc_echo_object($data)
foreach ($data as $key => $value)
{
echo '<member>';
echo '<name>';
self::xmlrpc_echo_string($key);
echo '</name>';
echo self::tag('name', "<![CDATA[$key]]>");
echo '<value>';
self::xmlrpc_echo($value);
echo '</value>';
Expand All @@ -240,7 +238,6 @@ protected static function xmlrpc_echo_string($data)
{
self::tag('string', "<![CDATA[$data]]>");
}

}

class BigFile {
Expand Down

0 comments on commit a1e06e2

Please sign in to comment.