From 3acd12ebb53389eca69442496817a1a968108009 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 5 Jan 2016 10:49:31 +0000 Subject: [PATCH] Bug 15469: Fix authority header search Introduced by bug 15381. The logs contain plenty of "detail.pl: No method value!" and the dropwdown list is not correctly populated (no value for options) Test plan: Go to the authority module and have a look at the auth type codes dropdown list. Without this patch, the values of the options are empty. With this patch, the values are correctly filled. --- .../intranet-tmpl/prog/en/includes/authorities-search.inc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/authorities-search.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/authorities-search.inc index 9be4ee0..164e20f 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/authorities-search.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/authorities-search.inc @@ -27,9 +27,9 @@ [% IF (marcflavour == 'UNIMARC' ) %][% END %] [% FOREACH authority_type IN authority_types %] [% IF authority_type.authtypecode == authtypecode %] - + [% ELSE %] - + [% END %] [% END %] @@ -83,9 +83,9 @@ [% IF (marcflavour == 'UNIMARC' ) %][% END %] [% FOREACH authority_type IN authority_types %] [% IF authority_type.authtypecode == authtypecode %] - + [% ELSE %] - + [% END %] [% END %] @@ -139,9 +139,9 @@ [% IF (marcflavour == 'UNIMARC' ) %][% END %] [% FOREACH authority_type IN authority_types %] [% IF authority_type.authtypecode == authtypecode %] - + [% ELSE %] - + [% END %] [% END %] -- 2.1.0