Merge pull request #1465 from apt-ghetto/fixRootUsername
[users] Do not allow 'root' as username
This commit is contained in:
commit
a01c428270
@ -409,6 +409,13 @@ UsersPage::validateUsernameText( const QString& textRef )
|
||||
tr( "Only lowercase letters, numbers, underscore and hyphen are allowed." ) );
|
||||
m_readyUsername = false;
|
||||
}
|
||||
else if ( 0 == QString::compare("root", text, Qt::CaseSensitive ) )
|
||||
{
|
||||
labelError( ui->labelUsername,
|
||||
ui->labelUsernameError,
|
||||
tr( "'root' is not allowed as user name." ) );
|
||||
m_readyUsername = false;
|
||||
}
|
||||
else
|
||||
{
|
||||
labelOk( ui->labelUsername, ui->labelUsernameError );
|
||||
|
Loading…
Reference in New Issue
Block a user