From a2a56ca441f33fb3772b89b85b0b40873b60e4e6 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=utf8 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 Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall --- 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 972eb0c2ec..ada7f193b4 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.20.1