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

Fix pass by reference (deprecated in php)

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1501 44740490-163a-0410-bde0-09ae8108e29a
parent 17b21b6b
No related branches found
No related tags found
No related merge requests found
...@@ -832,7 +832,7 @@ class SimpleSAML_Metadata_SAMLParser { ...@@ -832,7 +832,7 @@ class SimpleSAML_Metadata_SAMLParser {
#$sp['attributes'] = array(); #$sp['attributes'] = array();
$attcs = SimpleSAML_Utilities::getDOMChildren($element, 'AttributeConsumingService', '@md'); $attcs = SimpleSAML_Utilities::getDOMChildren($element, 'AttributeConsumingService', '@md');
if (count($attcs) > 0) { if (count($attcs) > 0) {
self::parseAttributeConsumerService($attcs[0], &$sp); self::parseAttributeConsumerService($attcs[0], $sp);
} }
......
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