Retraction could work now as well.

This commit is contained in:
Michael Vogel 2016-03-06 01:37:47 +01:00
parent 71227b5d0d
commit 6468fbb905
3 changed files with 37 additions and 4 deletions

View file

@ -20,7 +20,7 @@ class xml {
foreach($array as $key => $value) {
if (!is_array($value) AND !is_numeric($key))
$xml->addChild($key, $value);
$xml->addChild($key, xmlify($value));
elseif (is_array($value))
self::from_array($value, $xml->addChild($key));
}