Added ' to characters allowed in the username

This commit is contained in:
Michael U 2015-11-20 08:29:40 +11:00 committed by Morris Jobke
parent f076bfac32
commit dbfa143e2d

View file

@ -256,9 +256,9 @@ class Manager extends PublicEmitter implements IUserManager {
$l = \OC::$server->getL10N('lib');
// Check the name for bad characters
// Allowed are: "a-z", "A-Z", "0-9" and "_.@-"
if (preg_match('/[^a-zA-Z0-9 _\.@\-]/', $uid)) {
if (preg_match('/[^a-zA-Z0-9 _\.@\-\']/', $uid)) {
throw new \Exception($l->t('Only the following characters are allowed in a username:'
. ' "a-z", "A-Z", "0-9", and "_.@-"'));
. ' "a-z", "A-Z", "0-9", and "_.@-"\''));
}
// No empty username
if (trim($uid) == '') {