Merge pull request #2490 from annando/1604-bugfix-xml

Bugfix for XML function
This commit is contained in:
Tobias Diekershoff 2016-04-28 08:43:54 +02:00
commit 853b13252a
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ class xml {
$recursion_depth++;
$result_array[strtolower($key)] =
self::convert_element_to_array($value, $recursion_depth);
self::element_to_array($value, $recursion_depth);
$recursion_depth--;
}
if ($recursion_depth == 0) {