From ddc91de2de99f5c038a30355415aaefd3d5af29b 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 7d4f78e..80c50a0 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt @@ -135,9 +135,10 @@ $(document).ready(function(){
  • - [% IF (statuses) %] + + [% IF (statuses) %]
    Limit to items matching all the following statuses
    @@ -160,10 +161,10 @@ $(document).ready(function(){ [% END %]
    -
    -
      [% END %] +
      +
      1. -- 1.7.2.5