Skip to content
Snippets Groups Projects
Commit cfd1741c authored by Olav Morken's avatar Olav Morken
Browse files

SimpleSAML_Auth_ProcessingChain: Use getArray() instead of getValue().

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1674 44740490-163a-0410-bde0-09ae8108e29a
parent 5883b5e1
No related branches found
No related tags found
No related merge requests found
......@@ -53,9 +53,9 @@ class SimpleSAML_Auth_ProcessingChain {
$this->filters = array();
$config = SimpleSAML_Configuration::getInstance();
$configauthproc = $config->getValue('authproc.' . $mode);
$configauthproc = $config->getArray('authproc.' . $mode, NULL);
if (!empty($configauthproc) && is_array($configauthproc)) {
if (!empty($configauthproc)) {
$configfilters = self::parseFilterList($configauthproc);
self::addFilters($this->filters, $configfilters);
}
......
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