Skip to content

Commit ada1ddb

Browse files
committed
Fix syntax error
1 parent 7f0f15f commit ada1ddb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/Auth/Process/SFO.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public function __construct($config, $reserved)
4545
public function process(&$state)
4646
{
4747
foreach($this->skipentities as $skip) {
48-
if ($skip === $state['SPMetadata']['entityid'] || in_array($skip, $state['saml:RequesterID']), true) {
48+
if ($skip === $state['SPMetadata']['entityid'] || in_array($skip, $state['saml:RequesterID'], true)) {
4949
SimpleSAML\Logger::info('SFO - skipping SFO for entity ' . var_export($skip, true));
5050
return;
5151
}

0 commit comments

Comments
 (0)