From d3a3c6b37bbc308ca58855e7a93d88c464117277 Mon Sep 17 00:00:00 2001
From: Thibaud Guillot <thibaud.guillot@biblibre.com>
Date: Fri, 17 May 2024 11:13:21 +0200
Subject: [PATCH] Bug 36892: Fix label for 'is_standing' input

Test plan:

1) Go to acqui/histsearch.pl and look for "search_children_too" with
   dev tools console.
2) On 'is_standing' input, the same label is used
3) Apply this patch and reload it
4) Now it's correct

Sponsored by: BibLibre

Signed-off-by: Owen Leonard <oleonard@myacpl.org>
---
 koha-tmpl/intranet-tmpl/prog/en/includes/filter-orders.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/filter-orders.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/filter-orders.inc
index 2621455506..d939531a26 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/includes/filter-orders.inc
+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/filter-orders.inc
@@ -84,7 +84,7 @@
               <option value="cancelled">Cancelled</option>
             [% END %]
         </select>
-        <label class="yesno" for="search_children_too">
+        <label class="yesno" for="is_standing">
             [% IF filters.is_standing %]
                 <input type="checkbox" name="is_standing" id="is_standing" value="1" checked="checked" />
             [% ELSE %]
-- 
2.39.2