8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-06-02 07:52:23 +00:00

Add missing parameter to get_history_object call

This commit is contained in:
Jean-Romain Garnier 2020-04-23 16:08:29 +00:00 committed by Gabriel Detraz
parent 4ce58ddb3f
commit f6fdaa7007

View file

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