Browse Source

BugFix: Infoview Exception

master
Dirk Alders 4 years ago
parent
commit
1a03a45134
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      views/infoviews.py

+ 2
- 2
views/infoviews.py View File

14
     }.get(get_item_type(full_path), base_view)
14
     }.get(get_item_type(full_path), base_view)
15
 
15
 
16
 
16
 
17
-def get_wrapper_instance(full_path, request):
18
-    return get_wrapper_class(full_path)(request, full_path)
17
+def get_wrapper_instance(full_path, request, is_nxt_prv_item=False):
18
+    return get_wrapper_class(full_path)(request, full_path, is_nxt_prv_item)
19
 
19
 
20
 
20
 
21
 class base_view(base_userview):
21
 class base_view(base_userview):

Loading…
Cancel
Save