From 1e4d75c736164f23e924612ba0da2f239262ddda Mon Sep 17 00:00:00 2001 From: stronk7 Date: Thu, 22 Oct 2009 14:52:09 +0000 Subject: [PATCH] NOBUG. Added missing return causing dupe output after saving xml file. --- admin/xmldb/actions/save_xml_file/save_xml_file.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/xmldb/actions/save_xml_file/save_xml_file.class.php b/admin/xmldb/actions/save_xml_file/save_xml_file.class.php index e8208eba3f..425ee18e7f 100644 --- a/admin/xmldb/actions/save_xml_file/save_xml_file.class.php +++ b/admin/xmldb/actions/save_xml_file/save_xml_file.class.php @@ -111,7 +111,7 @@ class save_xml_file extends XMLDBAction { /// If unload has been disabled, simulate it by reloading the file now if (!$unload) { - $this->launch('load_xml_file'); + return $this->launch('load_xml_file'); } /// Launch postaction if exists (leave this here!) -- 2.39.5