From 551b9a3b7666797f6262223a46eeef3849be30db Mon Sep 17 00:00:00 2001 From: Pierre Goiffon Date: Thu, 14 Nov 2019 17:52:26 +0100 Subject: [PATCH] \MFDocument::saveXML : $options were not passed to the callee --- setup/modelfactory.class.inc.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup/modelfactory.class.inc.php b/setup/modelfactory.class.inc.php index e50569a7e..cea96dff8 100644 --- a/setup/modelfactory.class.inc.php +++ b/setup/modelfactory.class.inc.php @@ -2431,7 +2431,8 @@ class MFDocument extends \Combodo\iTop\DesignDocument $oRootNode->setAttribute('version', ITOP_DESIGN_LATEST_VERSION); $this->appendChild($oRootNode); } - return parent::saveXML($node); + + return parent::saveXML($node, $options); } /**