From 99fea11b9227d0ffa20943a78223edbd5c098dd1 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 8 Feb 2016 12:03:01 +0000 Subject: [PATCH] [SIGNED-OFF]Bug 15754: Fix regression on editing framework subfields When editing subfields the "repeatable", "mandatory" and "is url" checkboxes are not displayed: the input html tag is displayed instead. Caused by bug 13618. Test plan: Edit subfields and confirm the bug. Apply the patch and confirm that you are not able to check/uncheck checkboxes. Signed-off-by: Hector Castro Works as advertised --- .../prog/en/modules/admin/marc_subfields_structure.tt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/marc_subfields_structure.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/marc_subfields_structure.tt index ea573d4..ec27b4e 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/marc_subfields_structure.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/marc_subfields_structure.tt @@ -227,8 +227,8 @@ function populateHiddenCheckboxes(tab) { [% END %]
  • -
  • [% loo.repeatable %]
  • -
  • [% loo.mandatory %]
  • +
  • [% loo.repeatable.raw %]
  • +
  • [% loo.mandatory.raw %]
  • -
  • [% loo.isurl %] (if checked, it means that the subfield is a URL and can be clicked)
  • +
  • [% loo.isurl.raw %] (if checked, it means that the subfield is a URL and can be clicked)
  • (e.g., Title or Local-Number) NOTE: If you change this value you must ask your administrator to run misc/batchRebuildBiblioTables.pl.
  • -- 1.7.10.4