Fix error 404 on reset password (Fix #1342)
This commit is contained in:
@ -933,8 +933,8 @@ def edit_user(user_id):
|
||||
@login_required
|
||||
@admin_required
|
||||
def reset_user_password(user_id):
|
||||
if not config.config_public_reg:
|
||||
abort(404)
|
||||
#if not config.config_public_reg:
|
||||
# abort(404)
|
||||
if current_user is not None and current_user.is_authenticated:
|
||||
ret, message = reset_password(user_id)
|
||||
if ret == 1:
|
||||
|
Reference in New Issue
Block a user