Commit d6f41d8d authored by Ozzieisaacs's avatar Ozzieisaacs

Fix error 404 on reset password (Fix #1342)

parent fb8b6310
......@@ -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:
......
......@@ -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>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment