From d9cbac2174726c5a613bbfdeda9534921af7ab56 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 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. Signed-off-by: Frédéric Demians I confirm this patch silence noise in log file. Signed-off-by: Julian Maurice --- .../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 %] -- 1.9.1