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

(-)a/members/deletemem.pl (+2 lines)
Lines 110-115 if ( $op eq 'delete_confirm' or $countissues > 0 or $flags->{'CHARGES'} or $is_ Link Here
110
    my $patron_image = Koha::Patron::Images->find($bor->{borrowernumber});
110
    my $patron_image = Koha::Patron::Images->find($bor->{borrowernumber});
111
    $template->param( picture => 1 ) if $patron_image;
111
    $template->param( picture => 1 ) if $patron_image;
112
112
113
    $template->param( adultborrower => 1 ) if ( $bor->{category_type} eq 'A' );
114
113
    $template->param(borrowernumber => $member,
115
    $template->param(borrowernumber => $member,
114
        surname => $bor->{'surname'},
116
        surname => $bor->{'surname'},
115
        title => $bor->{'title'},
117
        title => $bor->{'title'},
(-)a/members/files.pl (+1 lines)
Lines 117-122 else { Link Here
117
    my $patron_image = Koha::Patron::Images->find($data->{borrowernumber});
117
    my $patron_image = Koha::Patron::Images->find($data->{borrowernumber});
118
    $template->param( picture => 1 ) if $patron_image;
118
    $template->param( picture => 1 ) if $patron_image;
119
119
120
    $template->param( adultborrower => 1 ) if ( $data->{category_type} eq 'A' );
120
    $template->param(
121
    $template->param(
121
        files => Koha::Patron::Files->new( borrowernumber => $borrowernumber )
122
        files => Koha::Patron::Files->new( borrowernumber => $borrowernumber )
122
          ->GetFilesInfo(),
123
          ->GetFilesInfo(),
(-)a/members/housebound.pl (-1 / +1 lines)
Lines 171-176 if ( C4::Context->preference('ExtendedPatronAttributes') and $patron ) { Link Here
171
    );
171
    );
172
}
172
}
173
173
174
$template->param( adultborrower => 1 ) if ( $category->category_type eq 'A' );
174
$template->param(
175
$template->param(
175
    picture            => $patron_image,
176
    picture            => $patron_image,
176
    housebound_profile => $houseboundprofile,
177
    housebound_profile => $houseboundprofile,
177
- 

Return to bug 18423