#851 Ampersand (aka '&') not welcomed in the setup wizard

SVN:trunk[3026]
This commit is contained in:
Romain Quetiez
2013-12-09 10:52:21 +00:00
parent f16d1ee1e4
commit 8509237084

View File

@@ -68,8 +68,10 @@ abstract class Parameters
}
else
{
$oNode = $oRoot->ownerDocument->createElement($sNodeName, $data);
$oNode = $oRoot->ownerDocument->createElement($sNodeName);
$oRoot->appendChild($oNode);
$oTextNode = $oRoot->ownerDocument->createTextNode($data);
$oNode->appendChild($oTextNode);
}
return $oNode;
}