View | Details | Raw Unified | Return to bug 6720
Collapse All | Expand All

(-)a/C4/AuthoritiesMarc.pm (+4 lines)
Lines 351-356 sub SearchAuthorities { Link Here
351
                        $reported_tag .= '$' . $_->[0] . $_->[1];
351
                        $reported_tag .= '$' . $_->[0] . $_->[1];
352
                    }
352
                    }
353
                }
353
                }
354
                my $thisauthtype = GetAuthType(GetAuthTypeCode($authid));
355
                $newline{authtype}     = defined ($thisauthtype) ?
356
                                            $thisauthtype->{'summary'} :
357
                                            GetAuthType($authtypecode)->{'summary'};
354
                $newline{summary}      = $summary;
358
                $newline{summary}      = $summary;
355
                $newline{even}         = $counter % 2;
359
                $newline{even}         = $counter % 2;
356
                $newline{reported_tag} = $reported_tag;
360
                $newline{reported_tag} = $reported_tag;
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-authoritiessearchresultlist.tt (-2 / +1 lines)
Lines 54-60 Link Here
54
                <tr>
54
                <tr>
55
            [% END %]
55
            [% END %]
56
                    <td>[% PROCESS authresult summary=resul.summary %]</td>
56
                    <td>[% PROCESS authresult summary=resul.summary %]</td>
57
                    <td>[% authtypetext %]</td>
57
                    <td>[% resul.authtype %]</td>
58
					[% UNLESS ( resul.isEDITORS ) %]
58
					[% UNLESS ( resul.isEDITORS ) %]
59
						<td>
59
						<td>
60
							 <a href="/cgi-bin/koha/opac-search.pl?type=opac&amp;op=do_search&amp;q=an=[% resul.authid %]">[% resul.used %] biblios</a>
60
							 <a href="/cgi-bin/koha/opac-search.pl?type=opac&amp;op=do_search&amp;q=an=[% resul.authid %]">[% resul.used %] biblios</a>
61
- 

Return to bug 6720