@@ -, +, @@ e.g. 550 $a Foo $9 42 in the summary --- .../prog/en/includes/authorities-search-results.inc | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/includes/authorities-search-results.inc +++ a/koha-tmpl/intranet-tmpl/prog/en/includes/authorities-search-results.inc @@ -8,15 +8,20 @@ [% SET searchurl = '/cgi-bin/koha/authorities/authorities-home.pl?op=do_search&type=intranet&marclist=any&operator=contains&orderby=HeadingAsc&value=' %] [% IF marcflavour == 'UNIMARC' %] + [% IF authid %] + [% link = BLOCK %][% heading | html %][% END %] + [% ELSE %] + [% link = BLOCK %][% heading | html %][% END %] + [% END %] [% SWITCH type %] [% CASE 'broader' %] - BT: [% heading | html %] + BT: [% link %] [% CASE 'narrower' %] - NT: [% heading | html %] + NT: [% link %] [% CASE 'seefrom' %] - UF: [% heading | html %] + UF: [% link %] [% CASE 'seealso' %] - RT: [% heading | html %] + RT: [% link %] [% END %] [% ELSE %] @@ -72,7 +77,7 @@ [% IF summary.seefrom %]
[% FOREACH see IN summary.seefrom %] - [% PROCESS showreference heading=see.heading linkType="" type=see.type search='' %] + [% PROCESS showreference heading=see.heading linkType="" type=see.type authid=see.authid %] [% IF ! loop.last %] ; [% END %] [% END %]
@@ -80,7 +85,7 @@ [% IF summary.seealso %]
[% FOREACH see IN summary.seealso %] - [% PROCESS showreference heading=see.heading linkType="" type=see.type search='' %] + [% PROCESS showreference heading=see.heading linkType="" type=see.type authid=see.authid %] [% IF ! loop.last %] ; [% END %] [% END %]
--