mirror of
https://github.com/friendica/friendica
synced 2024-11-09 23:02:54 +00:00
Update src/Module/Register.php
Co-authored-by: Hypolite Petovan <hypolite@mrpetovan.com>
This commit is contained in:
parent
606bd0be60
commit
ed30d888fa
1 changed files with 0 additions and 2 deletions
|
@ -288,10 +288,8 @@ class Register extends BaseModule
|
|||
//Check if nickname contains only US-ASCII and do not start with a digit
|
||||
if (!preg_match('/^[a-zA-Z][a-zA-Z0-9]*$/', $arr['nickname'])) {
|
||||
if (is_numeric(substr($arr['nickname'], 0, 1))) {
|
||||
Logger::info('Nickname with a leading digit not allowed', $arr);
|
||||
DI::sysmsg()->addNotice(DI::l10n()->t("Nickname cannot start with a digit."));
|
||||
} else {
|
||||
Logger::info('nickname with non us-ascii characters not allowed', $arr);
|
||||
DI::sysmsg()->addNotice(DI::l10n()->t("Nickname can only contain US-ASCII characters."));
|
||||
}
|
||||
$regdata = ['email' => $arr['email'], 'nickname' => $arr['nickname'], 'username' => $arr['username']];
|
||||
|
|
Loading…
Reference in a new issue