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

(-)a/members/accountline-details.pl (-4 / +3 lines)
Lines 23-29 use CGI; Link Here
23
use C4::Auth;
23
use C4::Auth;
24
use C4::Output;
24
use C4::Output;
25
use C4::Context;
25
use C4::Context;
26
use C4::Members qw( GetMember );
26
use Koha::Patrons;
27
use Koha::Account::Lines;
27
use Koha::Account::Lines;
28
28
29
my $input = new CGI;
29
my $input = new CGI;
Lines 59-66 if ($accountline) { Link Here
59
        finesview => 1,
59
        finesview => 1,
60
    );
60
    );
61
61
62
    my $data = GetMember( 'borrowernumber' => $accountline->borrowernumber );
62
    my $patron = Koha::Patrons->find( $accountline->borrowernumber );
63
    $template->param(%$data);
63
    $template->param( patron => $patron );
64
}
64
}
65
65
66
output_html_with_http_headers $input, $cookie, $template->output;
66
output_html_with_http_headers $input, $cookie, $template->output;
67
- 

Return to bug 2696