mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-05-31 08:02:43 +02:00
2017-07-14 Fred Gleason <fredg@paravelsystems.com>
* Fixed abug in 'rdlogin/rdlogin.cpp' that caused user login to fail to be effective when not listing users.
This commit is contained in:
parent
390175f3ae
commit
1bd54480b3
@ -15902,3 +15902,6 @@
|
||||
when 'Show User List in RDLogin' is unchecked.
|
||||
2017-07-14 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Incremented the package version to 2.16.0int07.
|
||||
2017-07-14 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Fixed abug in 'rdlogin/rdlogin.cpp' that caused user login to fail
|
||||
to be effective when not listing users.
|
||||
|
@ -273,7 +273,12 @@ void MainWidget::loginData()
|
||||
user=new RDUser(login_username_edit->text());
|
||||
}
|
||||
if(user->exists()&&user->checkPassword(login_password_edit->text(),false)) {
|
||||
login_ripc->setUser(login_username_box->currentText());
|
||||
if(login_system->showUserList()) {
|
||||
login_ripc->setUser(login_username_box->currentText());
|
||||
}
|
||||
else {
|
||||
login_ripc->setUser(login_username_edit->text());
|
||||
}
|
||||
login_password_edit->clear();
|
||||
delete user;
|
||||
qApp->processEvents();
|
||||
|
Loading…
x
Reference in New Issue
Block a user