From be8f28c4d19d5ec02e8b684db176cb3f89e46a63 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 8 Apr 2015 11:15:02 +0200 Subject: [PATCH] Bug 1487: Store the "display only used tags/subf" value in a cookie On the marc framework page, the checkbox to display only used tags/subfields is always unchecked. It should be stored into a cookie to always display the same view. Test plan: 1/ Go on the marc framework page 2/ Check the checkbox 3/ Go somewhere else on the staff interface 4/ Back to the marc framework page, the checkbox should be checked --- admin/marctagstructure.pl | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/admin/marctagstructure.tt | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/admin/marctagstructure.pl b/admin/marctagstructure.pl index d3b227d..048299c 100755 --- a/admin/marctagstructure.pl +++ b/admin/marctagstructure.pl @@ -39,7 +39,7 @@ $searchfield=~ s/\,//g; my $offset = $input->param('offset') || 0; my $op = $input->param('op') || ''; -my $dspchoice = $input->param('select_display'); +my $dspchoice = $input->cookie("marctagstructure_selectdisplay") // $input->param('select_display'); my $pagesize = 20; my $script_name = "/cgi-bin/koha/admin/marctagstructure.pl"; diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/marctagstructure.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/marctagstructure.tt index 8fdc30b..05fd527 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/marctagstructure.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/marctagstructure.tt @@ -7,6 +7,7 @@ [% INCLUDE 'doc-head-close.inc' %] [% INCLUDE 'datatables.inc' %] +