]> git.mxchange.org Git - friendica.git/blobdiff - include/xml.php
Removed moved function
[friendica.git] / include / xml.php
index c2313648cece89af0f171529a53286515d893009..c74c23c473ce3254a717e155e8c6a707958dd58e 100644 (file)
@@ -62,7 +62,7 @@ class xml {
 
        function copy(&$source, &$target, $elementname) {
                if (count($source->children()) == 0)
-                       $target->addChild($elementname, $source);
+                       $target->addChild($elementname, xmlify($source));
                else {
                        $child = $target->addChild($elementname);
                        foreach ($source->children() AS $childfield => $childentry)