From c0d73a8e09b4944bda978198b81713e2ecc360a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=C3=85kre=20Solberg?= <andreas.solberg@uninett.no> Date: Tue, 12 May 2009 07:33:27 +0000 Subject: [PATCH] Fix pass by reference (deprecated in php) git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1501 44740490-163a-0410-bde0-09ae8108e29a --- lib/SimpleSAML/Metadata/SAMLParser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/SimpleSAML/Metadata/SAMLParser.php b/lib/SimpleSAML/Metadata/SAMLParser.php index cec041f65..ed7f9559c 100644 --- a/lib/SimpleSAML/Metadata/SAMLParser.php +++ b/lib/SimpleSAML/Metadata/SAMLParser.php @@ -832,7 +832,7 @@ class SimpleSAML_Metadata_SAMLParser { #$sp['attributes'] = array(); $attcs = SimpleSAML_Utilities::getDOMChildren($element, 'AttributeConsumingService', '@md'); if (count($attcs) > 0) { - self::parseAttributeConsumerService($attcs[0], &$sp); + self::parseAttributeConsumerService($attcs[0], $sp); } -- GitLab