From 886a8daff00dff5a8df24bec93ec5f7d8e3e3157 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Tue, 12 Jul 2016 09:24:59 -0400 Subject: [PATCH] Bug 16903 - Multiple class attributes on catalog search tab MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit cat-search.inc contains an element with two class attributes, which is invalid. This patch corrects it. To test, apply the patch and view any page which uses the cat-search include file to display the header search boxes. For instance, the bibliographic detail page. In the header, the "Search the catalog" box should be selected, and any text you type in the box should be carried over when you switch to different search tabs. Signed-off-by: Marc VĂ©ron --- 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 972eb0c..ada7f19 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/cat-search.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/cat-search.inc @@ -37,7 +37,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 %] -- 1.7.10.4