This code shows up in my archive (docman) frontend, and weblinks "add new" backend after upgrading from Joomla 1.0.7 to Joomla 1.0.8:
Code:
and attributes should be converted to entities * @return string The string representation */ function toString($htmlSafe = false, $subEntities=false) { $result = ''; foreach ($this->arNodeMap as $key => $value) { $currNode =& $this->arNodeMap[$key]; $result .= $currNode->toString(false, $subEntities); } if ($htmlSafe) $result = $this->forHTML($result); return $result; } //toString } //DOMIT_NamedNodeMap_Attr ?> What is wrong, what can I do to get rid of this code showing up?
Thanks for any hint!