Skip to content
Snippets Groups Projects
Commit ebc3dcf8 authored by Andreas Åkre Solberg's avatar Andreas Åkre Solberg
Browse files

Do not supress warning/error when loading XML metadata.

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1670 44740490-163a-0410-bde0-09ae8108e29a
parent 556a2d56
No related branches found
No related tags found
No related merge requests found
......@@ -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);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment