Merge pull request #21806 from owncloud/mdusher-master

[jenkins] Added ' to characters allowed in the username
This commit is contained in:
Thomas Müller 2016-01-25 10:01:43 +01:00
commit adf532fe4e
1 changed files with 3 additions and 3 deletions

View File

@ -256,10 +256,10 @@ class Manager extends PublicEmitter implements IUserManager {
public function createUser($uid, $password) {
$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)) {
// Allowed are: "a-z", "A-Z", "0-9" and "_.@-'"
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) == '') {