From 034735bd3f15c50618d676cdb6db32962c66143f Mon Sep 17 00:00:00 2001 From: Jared Camins-Esakov Date: Mon, 28 May 2012 14:49:04 -0400 Subject: [PATCH] Bug 6720: Display the authority type in OPAC Content-Type: text/plain; charset="UTF-8" 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. --- C4/AuthoritiesMarc.pm | 1 + .../en/modules/opac-authoritiessearchresultlist.tt | 2 +- 2 files changed, 2 insertions(+), 1 deletions(-) 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.2.5