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

(-)a/C4/AuthoritiesMarc.pm (+2 lines)
Lines 1071-1082 sub BuildSummary { Link Here
1071
                    heading => $field->as_string($subfields_to_report),
1071
                    heading => $field->as_string($subfields_to_report),
1072
                    hemain  => ( $field->subfield( substr( $subfields_to_report, 0, 1 ) ) // undef ),
1072
                    hemain  => ( $field->subfield( substr( $subfields_to_report, 0, 1 ) ) // undef ),
1073
                    field   => $tag,
1073
                    field   => $tag,
1074
                    relator  => ( $field->subfield( 'e' ) // undef ),
1074
                };
1075
                };
1075
            } else {
1076
            } else {
1076
                push @authorized, {
1077
                push @authorized, {
1077
                    heading => $field->as_string(),
1078
                    heading => $field->as_string(),
1078
                    hemain  => ( $field->subfield('a') // undef ),
1079
                    hemain  => ( $field->subfield('a') // undef ),
1079
                    field   => $tag,
1080
                    field   => $tag,
1081
                    relator  => ( $field->subfield( 'e' ) // undef ),
1080
                };
1082
                };
1081
            }
1083
            }
1082
        }
1084
        }
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/authorities-search-results.inc (-2 / +1 lines)
Lines 72-78 Link Here
72
        <div class="authorizedheading">
72
        <div class="authorizedheading">
73
            [% FOREACH authorize IN summary.authorized %]
73
            [% FOREACH authorize IN summary.authorized %]
74
                <span class="authorizedheading [% IF auth_preview %]authority_preview[% END %]">
74
                <span class="authorizedheading [% IF auth_preview %]authority_preview[% END %]">
75
                    <a data-authid="[% authid | html %]" href="/cgi-bin/koha/authorities/detail.pl?authid=[% authid | uri %]">[% authorize.heading | html %]</a>
75
                    <a data-authid="[% authid | html %]" href="/cgi-bin/koha/authorities/detail.pl?authid=[% authid | uri %]">[% authorize.heading | html %] [% authorize.relator | html %]</a>
76
                </span>
76
                </span>
77
                [% UNLESS loop.last %]|[% END %]
77
                [% UNLESS loop.last %]|[% END %]
78
            [% END %]
78
            [% END %]
79
- 

Return to bug 32726