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

(-)a/C4/AuthoritiesMarc.pm (+2 lines)
Lines 998-1009 sub BuildSummary { Link Here
998
                    heading => $field->as_string($subfields_to_report),
998
                    heading => $field->as_string($subfields_to_report),
999
                    hemain  => ( $field->subfield( substr($subfields_to_report, 0, 1) ) // undef ),
999
                    hemain  => ( $field->subfield( substr($subfields_to_report, 0, 1) ) // undef ),
1000
                    field   => $tag,
1000
                    field   => $tag,
1001
                    relator  => ( $field->subfield( 'e' ) // undef ),
1001
                };
1002
                };
1002
            } else {
1003
            } else {
1003
                push @authorized, {
1004
                push @authorized, {
1004
                    heading => $field->as_string(),
1005
                    heading => $field->as_string(),
1005
                    hemain  => ( $field->subfield( 'a' ) // undef ),
1006
                    hemain  => ( $field->subfield( 'a' ) // undef ),
1006
                    field   => $tag,
1007
                    field   => $tag,
1008
                    relator  => ( $field->subfield( 'e' ) // undef ),
1007
                };
1009
                };
1008
            }
1010
            }
1009
        }
1011
        }
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/authorities-search-results.inc (-2 / +1 lines)
Lines 65-71 Link Here
65
        <div class="authorizedheading">
65
        <div class="authorizedheading">
66
          [% FOREACH authorize IN summary.authorized %]
66
          [% FOREACH authorize IN summary.authorized %]
67
            <span class="authorizedheading [% IF auth_preview %]authority_preview[% END %]">
67
            <span class="authorizedheading [% IF auth_preview %]authority_preview[% END %]">
68
                <a data-authid="[% authid | html %]" href="/cgi-bin/koha/authorities/detail.pl?authid=[% authid | uri %]">[% authorize.heading | html %]</a>
68
                <a data-authid="[% authid | html %]" href="/cgi-bin/koha/authorities/detail.pl?authid=[% authid | uri %]">[% authorize.heading | html %] [% authorize.relator | html %]</a>
69
            </span>
69
            </span>
70
            [% UNLESS loop.last %] | [% END %]
70
            [% UNLESS loop.last %] | [% END %]
71
          [% END %]
71
          [% END %]
72
- 

Return to bug 32726