summaryrefslogtreecommitdiffstats
path: root/lib/SimpleSAML/Metadata/SAMLParser.php
diff options
context:
space:
mode:
authorOlav Morken <olav.morken@uninett.no>2010-06-15 09:35:41 +0000
committerOlav Morken <olav.morken@uninett.no>2010-06-15 09:35:41 +0000
commit76a91cc9597863ffc1367c090a440bc6648ed591 (patch)
tree1f22733ed089a2210587722d7526951a1d366962 /lib/SimpleSAML/Metadata/SAMLParser.php
parent3e561d7b8502ba7713bfedf2d0e87c6a12354fbd (diff)
downloadsimplesamlphp-76a91cc9597863ffc1367c090a440bc6648ed591.zip
simplesamlphp-76a91cc9597863ffc1367c090a440bc6648ed591.tar.gz
simplesamlphp-76a91cc9597863ffc1367c090a440bc6648ed591.tar.bz2
SAMLParser: Fix parseElement().
git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@2346 44740490-163a-0410-bde0-09ae8108e29a
Diffstat (limited to 'lib/SimpleSAML/Metadata/SAMLParser.php')
-rw-r--r--lib/SimpleSAML/Metadata/SAMLParser.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/SimpleSAML/Metadata/SAMLParser.php b/lib/SimpleSAML/Metadata/SAMLParser.php
index 40c950a..8549ce6 100644
--- a/lib/SimpleSAML/Metadata/SAMLParser.php
+++ b/lib/SimpleSAML/Metadata/SAMLParser.php
@@ -212,7 +212,7 @@ class SimpleSAML_Metadata_SAMLParser {
public static function parseElement($entityElement) {
assert('$entityElement instanceof DOMElement');
- return new SimpleSAML_Metadata_SAMLParser($entityElement, NULL, NULL);
+ return new SimpleSAML_Metadata_SAMLParser($entityElement, NULL);
}