@@ -, +, @@ db update --- installer/data/mysql/atomicupdate/bug-8643-add_important_constraint.sql | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/admin/marctagstructure.tt | 1 - koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tt | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) --- a/installer/data/mysql/atomicupdate/bug-8643-add_important_constraint.sql +++ a/installer/data/mysql/atomicupdate/bug-8643-add_important_constraint.sql @@ -1,5 +1,5 @@ ALTER TABLE marc_subfield_structure ADD COLUMN important TINYINT(4) NOT NULL DEFAULT 0 AFTER mandatory; -ALTER TABLE marc_tag_structure ADD COLUMN important TINYINT(4) NOT NULL DEFAULT 0 AFTER frameworkcode; +ALTER TABLE marc_tag_structure ADD COLUMN important TINYINT(4) NOT NULL DEFAULT 0 AFTER mandatory; -- $DBversion = "3.23.00.XXX"; -- if ( CheckVersion($DBversion) ) { --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/marctagstructure.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/marctagstructure.tt @@ -99,7 +99,6 @@ [% END %] -
  • [% authorised_value %] (if you select a value here, the indicators will be limited to the authorized value list)
  • --- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tt @@ -384,7 +384,7 @@ function AreImportantsNotOk(){ [% END %] [% FOREACH subfield_loo IN innerloo.subfield_loop %] [% IF ( subfield_loo.important ) %]importants.push("[% subfield_loo.id %]"); - tab.push("[% subfield_loo.number %]"); + tab.push("[% BIG_LOO.number %]"); label.push("[% subfield_loo.marc_lib %]"); [% END %] [% END %] --