From 7010197882774bd261e3ed6cdb81f0051a649772 Mon Sep 17 00:00:00 2001 From: Dominique Fournier Date: Fri, 21 Mar 2014 12:39:37 +0000 Subject: [PATCH] Logical error in outputxml : missing $this-> git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@1227 bf3deb0d-5f1a-0410-827f-c0cc1f45334c --- outputxml.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/outputxml.php b/outputxml.php index 6b1ff61..4c37b35 100644 --- a/outputxml.php +++ b/outputxml.php @@ -28,7 +28,7 @@ class outputxml extends output { $key = is_numeric($key) ? "item$key" : $key; $subnode = $xml->addChild("$key"); - array_to_xml($value, $subnode); + $this->array_to_xml($value, $subnode); } else {