diff options
author | Jaime Perez Crespo <jaime.perez@uninett.no> | 2015-04-20 14:25:47 +0200 |
---|---|---|
committer | Jaime Perez Crespo <jaime.perez@uninett.no> | 2015-04-20 14:25:47 +0200 |
commit | 7204e20c725f5d9945596d14f721c5f3191c1283 (patch) | |
tree | 4709023fcf401fbfeb809cb01189f1d3ce3df224 /lib/SimpleSAML/Metadata/SAMLParser.php | |
parent | c76426b53ffcdb4a254b4aee691792d38bd17a74 (diff) | |
download | simplesamlphp-7204e20c725f5d9945596d14f721c5f3191c1283.zip simplesamlphp-7204e20c725f5d9945596d14f721c5f3191c1283.tar.gz simplesamlphp-7204e20c725f5d9945596d14f721c5f3191c1283.tar.bz2 |
Move SimpleSAML_Utilities::getDOMText() to SimpleSAML\Utils\XML::getDOMText(). Deprecate the former.
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 cc5b84e..c22e0c5 100644 --- a/lib/SimpleSAML/Metadata/SAMLParser.php +++ b/lib/SimpleSAML/Metadata/SAMLParser.php @@ -1016,7 +1016,7 @@ class SimpleSAML_Metadata_SAMLParser { $name = $attribute->getAttribute('Name'); $values = array_map( - array('SimpleSAML_Utilities', 'getDOMText'), + array('SimpleSAML\Utils\XML', 'getDOMText'), SimpleSAML_Utilities::getDOMChildren($attribute, 'AttributeValue', '@saml2') ); |