Skip to content
Snippets Groups Projects
Unverified Commit 8f04700f authored by Jan Trejbal's avatar Jan Trejbal
Browse files

Fix string assert

parent 66828779
No related branches found
No related tags found
No related merge requests found
...@@ -196,7 +196,7 @@ abstract class sspmod_core_Auth_UserPassBase extends SimpleSAML_Auth_Source { ...@@ -196,7 +196,7 @@ abstract class sspmod_core_Auth_UserPassBase extends SimpleSAML_Auth_Source {
} }
$attributes = $this->login($username, $password); $attributes = $this->login($username, $password);
assert('is_array($attributes)'); assert(is_array($attributes));
$state['Attributes'] = $attributes; $state['Attributes'] = $attributes;
return; return;
......
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