BugFix: Infoview Exception

This commit is contained in:
Dirk Alders 2020-06-11 10:44:56 +02:00
parent 7287643d98
commit 1a03a45134

View File

@ -14,8 +14,8 @@ def get_wrapper_class(full_path):
}.get(get_item_type(full_path), base_view) }.get(get_item_type(full_path), base_view)
def get_wrapper_instance(full_path, request): def get_wrapper_instance(full_path, request, is_nxt_prv_item=False):
return get_wrapper_class(full_path)(request, full_path) return get_wrapper_class(full_path)(request, full_path, is_nxt_prv_item)
class base_view(base_userview): class base_view(base_userview):