Browse Source

Add missing parameter to get_history_object call

release-2.9
Jean-Romain Garnier 6 years ago
committed by Gabriel Detraz
parent
commit
f6fdaa7007
  1. 4
      logs/views.py

4
logs/views.py

@ -557,7 +557,7 @@ def detailed_history(request, object_name, object_id):
raise Http404(_("No model found."))
# Get instance and check permissions
can_view, instance = get_history_object(model, object_name, object_id)
can_view, instance = get_history_object(request, model, object_name, object_id)
if not can_view:
return instance
@ -603,7 +603,7 @@ def history(request, application, object_name, object_id):
except LookupError:
raise Http404(_("No model found."))
can_view, instance = get_history_object(model, object_name, object_id)
can_view, instance = get_history_object(get_history_object, model, object_name, object_id)
if not can_view:
return instance

Loading…
Cancel
Save