From 53204d7bd348f0fab3f85d1900ec8bc3035faf08 Mon Sep 17 00:00:00 2001 From: cookie Date: Tue, 29 Aug 2006 09:08:40 +0000 Subject: file wird noch mals ueberprueft git-svn-id: svn://svn.cccv.de/engel-system@139 29ba0400-6e00-0410-a75a-ca02368028f8 --- www-ssl/inc/funktion_xml.php | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'www-ssl') diff --git a/www-ssl/inc/funktion_xml.php b/www-ssl/inc/funktion_xml.php index b9bb2ce5..12dbc254 100755 --- a/www-ssl/inc/funktion_xml.php +++ b/www-ssl/inc/funktion_xml.php @@ -110,9 +110,18 @@ function readXMLfile( $file ) $xml_parser = xml_parser_create("UTF-8"); xml_set_element_handler($xml_parser, "start_element_handler", "end_element_handler"); xml_set_character_data_handler($xml_parser, "character_data_handler"); - if (!($fp = fopen($file, "r"))) + + if (file_exists($file)) + { + if (!($fp = fopen($file, "r"))) + { + echo("

could not open XML file \"$file\"

"); + return -1; + } + } + else { - echo("

could not open XML file \"$file\"

"); + echo("

XML file \"$file\" not exist

"); return -1; } -- cgit v1.2.3-54-g00ecf