From 993c348d90e13f3af15b15e35073a67a686a71f1 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 Content-Type: text/plain; charset="utf-8" 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. --- 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 %] -- 2.1.4