From 0c71bb19f589349b02224e07ff6747624a946072 Mon Sep 17 00:00:00 2001 From: Jared Camins-Esakov Date: Mon, 28 May 2012 14:49:04 -0400 Subject: [PATCH] [SIGNED-OFF] Bug 6720: Display the authority type in OPAC Due to a peculiarity in the way SearchAuthorities worked, the authority search results on the OPAC always listed the authority type that the user searched for, rather than the authority type of the results. Signed-off-by: Katrin Fischer Works nicely, result list for OPAC search now shows the authority type for each record. --- C4/AuthoritiesMarc.pm | 1 + .../en/modules/opac-authoritiessearchresultlist.tt | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/C4/AuthoritiesMarc.pm b/C4/AuthoritiesMarc.pm index 5ea5098..405e689 100644 --- a/C4/AuthoritiesMarc.pm +++ b/C4/AuthoritiesMarc.pm @@ -351,6 +351,7 @@ sub SearchAuthorities { $reported_tag .= '$' . $_->[0] . $_->[1]; } } + $newline{authtype} = GetAuthType(GetAuthTypeCode($authid))->{'summary'}; $newline{summary} = $summary; $newline{even} = $counter % 2; $newline{reported_tag} = $reported_tag; diff --git a/koha-tmpl/opac-tmpl/prog/en/modules/opac-authoritiessearchresultlist.tt b/koha-tmpl/opac-tmpl/prog/en/modules/opac-authoritiessearchresultlist.tt index 5fdfb27..ecd345d 100644 --- a/koha-tmpl/opac-tmpl/prog/en/modules/opac-authoritiessearchresultlist.tt +++ b/koha-tmpl/opac-tmpl/prog/en/modules/opac-authoritiessearchresultlist.tt @@ -55,7 +55,7 @@ [% resul.summary %] - [% authtypetext %] + [% resul.authtype %] [% UNLESS ( resul.isEDITORS ) %] -- 1.7.9.5