Allow changing the username match pattern from the config
This commit is contained in:
parent
a8f064b9cd
commit
c99531decb
|
@ -114,7 +114,7 @@ function User_validate_Nick($nick)
|
||||||
if (strlen($nick) == 0 || strlen($nick) > 24) {
|
if (strlen($nick) == 0 || strlen($nick) > 24) {
|
||||||
return new ValidationResult(false, $nick);
|
return new ValidationResult(false, $nick);
|
||||||
}
|
}
|
||||||
if (preg_match('/([^\p{L}\p{N}\-_. ]+)/ui', $nick)) {
|
if (preg_match(config('username_regex', '/([^\p{L}\p{N}\-_. ]+)/ui'), $nick)) {
|
||||||
return new ValidationResult(false, $nick);
|
return new ValidationResult(false, $nick);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue