From d8d038ec73796709577a82ce920218da1503375f Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Mon, 4 Jun 2018 14:40:03 +0000 Subject: [PATCH] Bug 20876: The form_serialized_itype cookie is not used and should be removed This patch removes references to a form_serialized_itype cookie which appears in the code as part of the process of storing information used in the generation of the "Return to the last advanced search" link. To test, apply the patch and perform an advanced search in the OPAC using several search options including a limit by item type. From the search results page, follow the "Return to the last advanced search" link. The advanced search form should appear with all the search options you submitted before. --- koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-bottom.inc | 1 - koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-advsearch.tt | 1 - 2 files changed, 2 deletions(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-bottom.inc b/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-bottom.inc index 1d91ef7..d4e57df 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-bottom.inc +++ b/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-bottom.inc @@ -253,7 +253,6 @@ $(document).ready(function() { if($('#searchsubmit').length) { $(document).on("click", '#searchsubmit', function(e) { jQuery.removeCookie("form_serialized", { path: '/'}); - jQuery.removeCookie("form_serialized_itype", { path: '/'}); jQuery.removeCookie("form_serialized_limits", { path: '/'}); jQuery.removeCookie("num_paragraph", { path: '/'}); jQuery.removeCookie("search_path_code", { path: '/'}); diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-advsearch.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-advsearch.tt index 1b7fb90..593a8654 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-advsearch.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-advsearch.tt @@ -421,7 +421,6 @@ $(document).ready(function() { [% ELSE %] //Clear all form cookies jQuery.removeCookie("form_serialized", { path: '/'}); - jQuery.removeCookie("form_serialized_itype", { path: '/'}); jQuery.removeCookie("form_serialized_limits", { path: '/'}); jQuery.removeCookie("num_paragraph", { path: '/'}); jQuery.removeCookie("search_path_code", { path: '/'}); -- 2.1.4