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

(-)a/members/pay.pl (-2 / +1 lines)
Lines 112-118 elsif ( $input->param('confirm_writeoff') ) { Link Here
112
              . "&error_over=1" );
112
              . "&error_over=1" );
113
113
114
    } else {
114
    } else {
115
        Koha::Account->new( { patron_id => $borrowernumber } )->pay(
115
        $payment_id = Koha::Account->new( { patron_id => $borrowernumber } )->pay(
116
            {
116
            {
117
                amount     => $amount,
117
                amount     => $amount,
118
                lines      => [ scalar Koha::Account::Lines->find($accountlines_id) ],
118
                lines      => [ scalar Koha::Account::Lines->find($accountlines_id) ],
119
- 

Return to bug 23806