@@ -, +, @@ --- C4/AuthoritiesMarc.pm | 4 ++++ .../en/modules/opac-authoritiessearchresultlist.tt | 2 +- 2 files changed, 5 insertions(+), 1 deletions(-) --- a/C4/AuthoritiesMarc.pm +++ a/C4/AuthoritiesMarc.pm @@ -351,6 +351,10 @@ sub SearchAuthorities { $reported_tag .= '$' . $_->[0] . $_->[1]; } } + my $thisauthtype = GetAuthType(GetAuthTypeCode($authid)); + $newline{authtype} = defined ($thisauthtype) ? + $thisauthtype->{'summary'} : + GetAuthType($authtypecode)->{'summary'}; $newline{summary} = $summary; $newline{even} = $counter % 2; $newline{reported_tag} = $reported_tag; --- a/koha-tmpl/opac-tmpl/prog/en/modules/opac-authoritiessearchresultlist.tt +++ a/koha-tmpl/opac-tmpl/prog/en/modules/opac-authoritiessearchresultlist.tt @@ -54,7 +54,7 @@ [% END %] [% PROCESS authresult summary=resul.summary %] - [% authtypetext %] + [% resul.authtype %] [% UNLESS ( resul.isEDITORS ) %] [% resul.used %] biblios --