diff options
author | cookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8> | 2005-11-22 18:54:26 +0000 |
---|---|---|
committer | cookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8> | 2005-11-22 18:54:26 +0000 |
commit | e0932aaebb30333ed1bb688b162a8c98926d801a (patch) | |
tree | a23fd44616c67ce4de07abb525fb4247a89ec3f7 /www-ssl | |
parent | 2d0541dc428fbb97df8a026bd8424ce83f4be650 (diff) |
probleme mit anfuerungszeichen aus penterbarf behoben
git-svn-id: svn://svn.cccv.de/engel-system@83 29ba0400-6e00-0410-a75a-ca02368028f8
Diffstat (limited to 'www-ssl')
-rwxr-xr-x | www-ssl/inc/funktion_xml.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/www-ssl/inc/funktion_xml.php b/www-ssl/inc/funktion_xml.php index 089d89ff..b9bb2ce5 100755 --- a/www-ssl/inc/funktion_xml.php +++ b/www-ssl/inc/funktion_xml.php @@ -38,7 +38,9 @@ function dataXMLmain( $Data, &$Objekt, $Tiefe ) echo "?$Tiefe$depth"; if( ($depth-1)==$Tiefe) { - $Objekt->sub[ $XMLpos[$Tiefe] ]->data .= convertValues($Data); +// $Objekt->sub[ $XMLpos[$Tiefe] ]->data .= convertValues($Data); + $Objekt->sub[ $XMLpos[$Tiefe] ]->data .= htmlentities( convertValues($Data), ENT_QUOTES); + if( $XMLDEBUG) echo "???". $Objekt->sub[ $XMLpos[$Tiefe] ]->name. "|$Data|$Tiefe???<br>"; } |