Fix root element containing only text in api_create_xml()
This commit is contained in:
parent
62eba48679
commit
dde61a77a4
1 changed files with 9 additions and 9 deletions
|
@ -885,7 +885,6 @@ function api_create_xml(array $data, $root_element)
|
|||
{
|
||||
$childname = key($data);
|
||||
$data2 = array_pop($data);
|
||||
$key = key($data2);
|
||||
|
||||
$namespaces = ["" => "http://api.twitter.com",
|
||||
"statusnet" => "http://status.net/schema/api/1/",
|
||||
|
@ -898,8 +897,8 @@ function api_create_xml(array $data, $root_element)
|
|||
}
|
||||
|
||||
if (is_array($data2)) {
|
||||
$key = key($data2);
|
||||
api_walk_recursive($data2, "api_reformat_xml");
|
||||
}
|
||||
|
||||
if ($key == "0") {
|
||||
$data4 = [];
|
||||
|
@ -911,6 +910,7 @@ function api_create_xml(array $data, $root_element)
|
|||
|
||||
$data2 = $data4;
|
||||
}
|
||||
}
|
||||
|
||||
$data3 = [$root_element => $data2];
|
||||
|
||||
|
|
Loading…
Reference in a new issue