From 59ea40a137f1c4289d898966e428ed475d209857 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Mon, 16 Dec 2013 11:26:12 -0500 Subject: [PATCH] Bug 11405 [5] - Fix html fieldset weirdness For unknown and unnecessary reasons, the inventory tool display will attempt to merge the "select items you want to check" fieldset with the bottom fieldset if no statuses are present. This situation is highly unlikely and complicates the template logic. --- .../prog/en/modules/tools/inventory.tt | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt index b64ec5a..565908f 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt @@ -168,9 +168,10 @@ $(document).ready(function(){
  • - [% IF (statuses) %] + + [% IF (statuses) %]
    Limit to items matching all the following statuses
    @@ -193,10 +194,10 @@ $(document).ready(function(){ [% END %]
    -
    -
      [% END %] +
      +
      1. -- 1.7.2.5