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 <Katrin.Fischer.83@web.de> Works nicely, result list for OPAC search now shows the authority type for each record. Signed-off-by: Jared Camins-Esakov <jcamins@cpbibliography.com> Rebased 20 June 2012. Signed-off-by: Mirko Tietgen <5p4m@gmx.de> Works as expected.
This commit is contained in:
parent
f809e47fd1
commit
ca7fa487c6
2 changed files with 5 additions and 1 deletions
|
@ -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;
|
||||
|
|
|
@ -54,7 +54,7 @@
|
|||
<tr>
|
||||
[% END %]
|
||||
<td>[% PROCESS authresult summary=resul.summary %]</td>
|
||||
<td>[% authtypetext %]</td>
|
||||
<td>[% resul.authtype %]</td>
|
||||
[% UNLESS ( resul.isEDITORS ) %]
|
||||
<td>
|
||||
<a href="/cgi-bin/koha/opac-search.pl?type=opac&op=do_search&q=an=[% resul.authid %]">[% resul.used %] biblios</a>
|
||||
|
|
Loading…
Reference in a new issue