diff options
author | Olav Morken <olav.morken@uninett.no> | 2010-06-15 09:35:41 +0000 |
---|---|---|
committer | Olav Morken <olav.morken@uninett.no> | 2010-06-15 09:35:41 +0000 |
commit | 76a91cc9597863ffc1367c090a440bc6648ed591 (patch) | |
tree | 1f22733ed089a2210587722d7526951a1d366962 /lib/SimpleSAML/Metadata/SAMLParser.php | |
parent | 3e561d7b8502ba7713bfedf2d0e87c6a12354fbd (diff) | |
download | simplesamlphp-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.php | 2 |
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); } |