From ebc3dcf8b913f63b446972e03ff3ecda4bf598db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=C3=85kre=20Solberg?= <andreas.solberg@uninett.no> Date: Fri, 14 Aug 2009 12:26:00 +0000 Subject: [PATCH] Do not supress warning/error when loading XML metadata. git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1670 44740490-163a-0410-bde0-09ae8108e29a --- lib/SimpleSAML/Metadata/SAMLParser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/SimpleSAML/Metadata/SAMLParser.php b/lib/SimpleSAML/Metadata/SAMLParser.php index bb33bc12f..b876adfd9 100644 --- a/lib/SimpleSAML/Metadata/SAMLParser.php +++ b/lib/SimpleSAML/Metadata/SAMLParser.php @@ -272,7 +272,7 @@ class SimpleSAML_Metadata_SAMLParser { $doc = new DOMDocument(); - $res = @$doc->load($file); + $res = $doc->load($file); if($res !== TRUE) { throw new Exception('Failed to read XML from file: ' . $file); } -- GitLab