From: stronk7 Date: Thu, 22 Oct 2009 14:52:09 +0000 (+0000) Subject: NOBUG. Added missing return causing dupe output after saving xml file. X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=1e4d75c736164f23e924612ba0da2f239262ddda;p=moodle.git NOBUG. Added missing return causing dupe output after saving xml file. --- 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!)