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

Commit

Permalink
Merge pull request #8 from shirkdog/master
Browse files Browse the repository at this point in the history
Fix for bug #843 in usermanagerback.cpp. Adding in a comma to the regex pattern
  • Loading branch information
Kris Moore committed Nov 27, 2013
2 parents 8e65899 + d04fae7 commit 8ad6faf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src-qt4/pc-usermanager/usermanagerback.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ void UserManagerBackend::programInit() {
fullnameRegExp.setPattern("([:!@])+");
homeLocRegExp.setPattern("^(/usr)?/home/?");
usernameRegExp.setPattern("([a-z]*[A-Z]*[0-9]*[_]*)+");
passwordRegExp.setPattern("([a-z]*[A-Z]*[0-9]*[!\"$%^&*()_+=#'`@~:?<>|{}\\-.]*)+");
passwordRegExp.setPattern("([a-z]*[A-Z]*[0-9]*[!\"$%^&*()_+=#'`@~:?<>|{}\\-.,]*)+");
groupnameRegExp.setPattern("([a-z]*[A-Z]*[0-9]*[_]*)+");
}

Expand Down

0 comments on commit 8ad6faf

Please sign in to comment.