Skip to content
This repository has been archived by the owner on Dec 10, 2023. It is now read-only.

Commit

Permalink
[FIXED JENKINS-15753] Allow spaces in group names.
Browse files Browse the repository at this point in the history
  • Loading branch information
KostyaSha committed Oct 12, 2013
1 parent 5b55da2 commit f213f87
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -116,7 +116,7 @@ public CrowdConfigurationService(String pGroupNames, boolean pNestedGroups) {
+ pGroupNames);
}
this.allowedGroupNames = new ArrayList<String>();
for (String group : pGroupNames.split("[,\\s]")) {
for (String group : pGroupNames.split(",")) {
if (null != group && group.trim().length() > 0) {
if (LOG.isLoggable(Level.FINE)) {
LOG.fine("-> adding allowed group name: " + group);
Expand Down
@@ -1,5 +1,5 @@
<div>
The names of the Crowd groups whose members are allowed to login.
<p/>
To use more than one group separate the names by whitespaces or commas.
To use more than one group separate the names by commas.
</div>

0 comments on commit f213f87

Please sign in to comment.