Skip to content
Snippets Groups Projects
Commit 0d27fbc2 authored by vrioux's avatar vrioux
Browse files

Fix wrong right parenthesis

parent 108c7279
No related branches found
No related tags found
No related merge requests found
......@@ -175,7 +175,7 @@ class sspmod_consent_Auth_Process_Consent extends SimpleSAML_Auth_ProcessingFilt
if ($optionToTest['type'] === 'regex') {
// regex-based consent disabling
if (!array_key_exists('pattern'), $optionToTest) {
if (!array_key_exists('pattern', $optionToTest)) {
continue; // no pattern defined
}
......@@ -189,7 +189,7 @@ class sspmod_consent_Auth_Process_Consent extends SimpleSAML_Auth_ProcessingFilt
}
} // end foreach
// Base case : no match
return false;
......
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