Skip to content

Commit

Permalink
Merge pull request #5085 from jim-parry/fix/xmlrpc
Browse files Browse the repository at this point in the history
Fix typo in serializeval()
  • Loading branch information
jim-parry committed Apr 15, 2017
2 parents a706fbf + ab15530 commit c06bc67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/libraries/Xmlrpc.php
Expand Up @@ -1884,7 +1884,7 @@ public function serialize_class()
public function serializeval($o)
{
$array = $o->me;
list($value, $type) = array(reset($ar), key($array));
list($value, $type) = array(reset($array), key($array));
return "<value>\n".$this->serializedata($type, $value)."</value>\n";
}

Expand Down

0 comments on commit c06bc67

Please sign in to comment.