From fdd6d00ac2f0242817b3bbec7cd5050c990cbad0 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sun, 18 Feb 2007 05:30:19 +0000 Subject: [PATCH] trigger_error() should kill the script: don't exit on our own accord --- Xml.php | 1 - 1 file changed, 1 deletion(-) diff --git a/Xml.php b/Xml.php index 2926044..d98fdf3 100644 --- a/Xml.php +++ b/Xml.php @@ -120,7 +120,6 @@ class BSXml $error['line'] = xml_get_current_line_number($parser->parser); $error['column'] = xml_get_current_column_number($parser->parser); trigger_error("XML Error: $error[string] at line $error[line] colunn $error[column]"); - exit; } // destroy the parser -- 2.22.5