Skip to content
Snippets Groups Projects
Commit edc4e3fc authored by Olav Morken's avatar Olav Morken
Browse files

Fix missing "new" keyword in file "lib/SimpleSAML/XML/Shib13/AuthnResponse.php"

Patch by sylvain@demarque.com.

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1586 44740490-163a-0410-bde0-09ae8108e29a
parent b4a2b0cf
No related branches found
No related tags found
No related merge requests found
...@@ -210,7 +210,7 @@ class SimpleSAML_XML_Shib13_AuthnResponse extends SimpleSAML_XML_AuthnResponse { ...@@ -210,7 +210,7 @@ class SimpleSAML_XML_Shib13_AuthnResponse extends SimpleSAML_XML_AuthnResponse {
if ($attr = $nodelist->item(0)) { if ($attr = $nodelist->item(0)) {
return $attr->value; return $attr->value;
} else { } else {
throw Exception('Could not find Issuer field in Authentication response'); throw new Exception('Could not find Issuer field in Authentication response');
} }
} }
......
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