From 1c8b0b3784cf5614652f5207b3bee6bd6234b2f9 Mon Sep 17 00:00:00 2001 From: cookie Date: Fri, 21 Oct 2005 17:07:51 +0000 Subject: ordendlicher abbruch bei fehlenden xml file git-svn-id: svn://svn.cccv.de/engel-system@6 29ba0400-6e00-0410-a75a-ca02368028f8 --- inc/funktion_xml.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'inc') diff --git a/inc/funktion_xml.php b/inc/funktion_xml.php index f740cfac..41a18503 100755 --- a/inc/funktion_xml.php +++ b/inc/funktion_xml.php @@ -107,7 +107,8 @@ function readXMLfile( $file ) xml_set_character_data_handler($xml_parser, "character_data_handler"); if (!($fp = fopen($file, "r"))) { - die("could not open XML input"); + echo("

could not open XML file \"$file\"

"); + return -1; } if( $XMLDEBUG) echo "
";
@@ -122,6 +123,7 @@ function readXMLfile( $file )
 	}
 	if( $XMLDEBUG)	echo "
"; xml_parser_free($xml_parser); + return 0; } /*#######################################################################################*/ @@ -132,7 +134,7 @@ function getXMLsubPease( $Sourse, $Name ) return $value; echo "

Fehler: getXMLsubPease( $Sourse, $Name ) not found

"; - die; +// die; } ?> -- cgit v1.2.3-54-g00ecf