Logical error in outputxml : missing $this->

git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@1227 bf3deb0d-5f1a-0410-827f-c0cc1f45334c
This commit is contained in:
2014-03-21 12:39:37 +00:00
parent 544dc3cfed
commit 7010197882

View File

@@ -28,7 +28,7 @@ class outputxml extends output
{ {
$key = is_numeric($key) ? "item$key" : $key; $key = is_numeric($key) ? "item$key" : $key;
$subnode = $xml->addChild("$key"); $subnode = $xml->addChild("$key");
array_to_xml($value, $subnode); $this->array_to_xml($value, $subnode);
} }
else else
{ {