Retraction could work now as well.

This commit is contained in:
Michael Vogel 2016-03-06 01:37:47 +01:00 committed by Roland Haeder
parent 265af9c99b
commit cd57c49600
No known key found for this signature in database
GPG key ID: B72F8185C6C7BD78
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));
}