diff --git a/modules/aggregator/lib/Aggregator.php b/modules/aggregator/lib/Aggregator.php index 2b30d46cd004e94db9363edb30fb7fe73c1b0609..af357f58e76c970dbd8d8d1e2e6ff5a3872e7350 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;