Fix error 404 on reset password (Fix #1342)

This commit is contained in:
Ozzieisaacs 2020-05-01 08:33:50 +02:00
parent fb8b6310d5
commit d6f41d8dc0
2 changed files with 3 additions and 3 deletions

View File

@ -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:

View File

@ -184,7 +184,7 @@
</div>
<a href="#" id="get_meta" class="btn btn-default" data-toggle="modal" data-target="#metaModal">{{_('Fetch Metadata')}}</a>
<button type="submit" id="submit" class="btn btn-default">{{_('Save')}}</button>
<a href="{{ url_for('web.show_book', book_id=book.id) }}" class="btn btn-default">{{_('Cancel')}}</a>
<a href="{{ url_for('web.show_book', book_id=book.id) }}" id="edit_cancel" class="btn btn-default">{{_('Cancel')}}</a>
</div>
</form>