Skip to content
Snippets Groups Projects
Unverified Commit 57bc4f5f authored by Tim van Dijen's avatar Tim van Dijen Committed by GitHub
Browse files

Fix mistake from merge

Sorry, I broke it last night!
parent 87024341
No related branches found
No related tags found
No related merge requests found
...@@ -49,9 +49,9 @@ class PHP extends \SimpleSAML\Auth\ProcessingFilter ...@@ -49,9 +49,9 @@ class PHP extends \SimpleSAML\Auth\ProcessingFilter
assert(is_array($request)); assert(is_array($request));
assert(array_key_exists('Attributes', $request)); assert(array_key_exists('Attributes', $request));
$function = function (/** @scrutinizer ignore-unused */ &$attributes) { $function = function (/** @scrutinizer ignore-unused */ &$attributes, &$state) {
eval($this->code); eval($this->code);
}; };
$function($request['Attributes']); $function($request['Attributes'], $request);
} }
} }
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