Skip to content

Commit 8ad820c

Browse files
committed
Use semicolon as value separator instead of comma. The Shibboleth SP separates multi-value SAML2 attributes by semicolons.
1 parent b11e533 commit 8ad820c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/Extragroups/UserGroupBackend.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ protected function eventuallyAddExtraGroups($username, & $groups)
9090

9191
protected function splitCommaSeparated($string)
9292
{
93-
return preg_split('/\s*,\s*/', $string, -1, PREG_SPLIT_NO_EMPTY);
93+
return preg_split('/\s*;\s*/', $string, -1, PREG_SPLIT_NO_EMPTY);
9494
}
9595

9696
protected function fillPlaceHolders($string)

0 commit comments

Comments
 (0)