From 49a0041eb68cf72fa035b6aa33c117eb6d48954d Mon Sep 17 00:00:00 2001
From: Olav Morken <olav.morken@uninett.no>
Date: Thu, 5 Nov 2009 11:27:44 +0000
Subject: [PATCH] aggregator: Add support for attribute authorities.

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1963 44740490-163a-0410-bde0-09ae8108e29a
---
 modules/aggregator/lib/Aggregator.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/aggregator/lib/Aggregator.php b/modules/aggregator/lib/Aggregator.php
index 2b30d46cd..af357f58e 100644
--- a/modules/aggregator/lib/Aggregator.php
+++ b/modules/aggregator/lib/Aggregator.php
@@ -31,7 +31,7 @@ class sspmod_aggregator_Aggregator {
 		$this->aConfig = $aConfig;
 		$this->id = $id;
 		
-		$this->sets = array('saml20-idp-remote', 'saml20-sp-remote', 'shib13-idp-remote', 'shib13-sp-remote');
+		$this->sets = array('saml20-idp-remote', 'saml20-sp-remote', 'shib13-idp-remote', 'shib13-sp-remote', 'attributeauthority-remote');
 		
 		if ($this->aConfig->hasValue('set')) {
 			$this->limitSets($this->aConfig->getString('set'));
@@ -54,7 +54,7 @@ class sspmod_aggregator_Aggregator {
 			case 'shib13' :
 				$this->sets = array_intersect($this->sets, array('shib13-idp-remote', 'shib13-sp-remote')); break;
 			case 'idp' :
-				$this->sets = array_intersect($this->sets, array('saml20-idp-remote', 'shib13-idp-remote')); break;
+				$this->sets = array_intersect($this->sets, array('saml20-idp-remote', 'shib13-idp-remote', 'attributeauthority-remote')); break;
 			case 'sp' :
 				$this->sets = array_intersect($this->sets, array('saml20-sp-remote', 'shib13-sp-remote')); break;
 
-- 
GitLab