From aed5f2a3b1e2a739d8b9a7777fc9a8506b7dc678 Mon Sep 17 00:00:00 2001 From: David Cook Date: Wed, 19 Aug 2020 15:44:57 +1000 Subject: [PATCH] Bug 26249: Set keep_text class correctly in cat-search.inc This patch sets the keep_text class correctly in cat-search.inc for the "Search the catalog" tab To test: 1) Apply the patch 2) Go to /cgi-bin/koha/catalogue/search.pl 3) Type "A" into the search box for "Search the catalog" 4) Click on the "Check out" tab 5) Note that "A" appears in search box 6) Change "A" to "B" in search box 7) Click on the "Search the catalog" box 8) Note that "B" appears in the search box 9) Note no Javascript errors in the console Signed-off-by: Didier Gautheron --- koha-tmpl/intranet-tmpl/prog/en/includes/cat-search.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/cat-search.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/cat-search.inc index b14619bdb1..f678027b91 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/cat-search.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/cat-search.inc @@ -38,7 +38,7 @@ [% IF ( CAN_user_circulate_circulate_remaining_permissions ) %]
  • Check out
  • [% END %] [% IF ( CAN_user_circulate_circulate_remaining_permissions ) %]
  • Check in
  • [% END %] [% IF ( CAN_user_circulate_circulate_remaining_permissions ) %]
  • Renew
  • [% END %] - [% IF ( CAN_user_catalogue ) %]
  • Search the catalog
  • [% END %] + [% IF ( CAN_user_catalogue ) %]
  • Search the catalog
  • [% END %] -- 2.11.0