Skip to content

Commit

Permalink
Merge pull request LimeSurvey#185 from ravindrakhokharia/master
Browse files Browse the repository at this point in the history
Fixed issue #8856: xmlrpc response It should not add the datatype tag for the key
  • Loading branch information
c-schmitz committed Mar 26, 2014
2 parents a07e0fe + 084b230 commit 441cc07
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions application/libraries/BigData.php
Original file line number Diff line number Diff line change
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 441cc07

Please sign in to comment.