work through the diaspora_v2 outgoing status posts

This commit is contained in:
zotlabs 2017-05-28 19:17:46 -07:00
parent 7738083f3e
commit b15a5f03e6

View File

@ -3049,7 +3049,8 @@ function array2XML($obj, $array) {
if(is_array($value)) {
$node = $obj->addChild($key);
array2XML($node, $value);
} else {
}
else {
$obj->addChild($key, htmlspecialchars($value));
}
}