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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-title.inc (-1 / +1 lines)
Lines 1-5 Link Here
1
[%- IF ( borrower.borrowernumber ) %]
1
[%- IF ( borrower.borrowernumber ) %]
2
    [%- IF borrower.category_type == 'I' %]
2
    [%- IF borrower.category.category_type == 'I' %]
3
        [%- borrower.surname | html %] [% IF borrower.othernames %] ([% borrower.othernames | html %]) [% END %]
3
        [%- borrower.surname | html %] [% IF borrower.othernames %] ([% borrower.othernames | html %]) [% END %]
4
    [%- ELSE %]
4
    [%- ELSE %]
5
        [%- IF invert_name %]
5
        [%- IF invert_name %]
(-)a/members/moremember.pl (-2 / +1 lines)
Lines 356-362 $template->param( Link Here
356
    PatronsPerPage => C4::Context->preference("PatronsPerPage") || 20,
356
    PatronsPerPage => C4::Context->preference("PatronsPerPage") || 20,
357
    relatives_issues_count => $relatives_issues_count,
357
    relatives_issues_count => $relatives_issues_count,
358
    relatives_borrowernumbers => \@relatives,
358
    relatives_borrowernumbers => \@relatives,
359
    borrower => Koha::Patrons->find( $borrowernumber ),
359
    borrower => scalar Koha::Patrons->find( $borrowernumber ),
360
);
360
);
361
361
362
output_html_with_http_headers $input, $cookie, $template->output;
362
output_html_with_http_headers $input, $cookie, $template->output;
363
- 

Return to bug 18510