diff options
-rw-r--r-- | ishtar_common/views.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ishtar_common/views.py b/ishtar_common/views.py index b362dfd04..a990fdfa6 100644 --- a/ishtar_common/views.py +++ b/ishtar_common/views.py @@ -736,6 +736,8 @@ def update_current_item(request, item_type=None, pk=None): def pin_search(request, item_type): + if item_type.startswith("administrativeact"): + item_type = "administrativeact" key = "pin-search-" + item_type if not item_type or not ( request.is_ajax() and request.method == "POST" and "value" in request.POST |