fixed a bug that affects allowing password change for users (#854)

This commit is contained in:
Elifcan Cakmak 2019-03-20 15:06:11 +03:00 committed by Ozzie Isaacs
parent a0a15b4598
commit ec2103a3d0
1 changed files with 1 additions and 1 deletions

View File

@ -2843,7 +2843,7 @@ def view_configuration():
content.config_default_role = content.config_default_role + ub.ROLE_DELETE_BOOKS
if "passwd_role" in to_save:
content.config_default_role = content.config_default_role + ub.ROLE_PASSWD
if "passwd_role" in to_save:
if "edit_shelf_role" in to_save:
content.config_default_role = content.config_default_role + ub.ROLE_EDIT_SHELFS
content.config_default_show = 0
if "show_detail_random" in to_save: