#1053 XML comments breaking the setup with message "Notice: Undefined property: DOMComment::$wholeText in ...modelfactory.class.inc.php on line 1280"

SVN:trunk[3490]
This commit is contained in:
Romain Quetiez
2015-01-14 13:51:37 +00:00
parent ed2cd2cea3
commit 44fad50031

View File

@@ -1339,7 +1339,7 @@ class MFElement extends DOMElement
$sText = null;
foreach($this->childNodes as $oChildNode)
{
if ($oChildNode instanceof DOMCharacterData) // Base class of DOMText and DOMCdataSection
if ($oChildNode instanceof DOMText)
{
if (is_null($sText)) $sText = '';
$sText .= $oChildNode->wholeText;