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

(-)a/members/boraccount.pl (-7 / +1 lines)
Lines 238-249 if ( $op eq 'cud-edit_note' ) { Link Here
238
    $schema->txn_do(
238
    $schema->txn_do(
239
        sub {
239
        sub {
240
            # Update the note and date in the account line
240
            # Update the note and date in the account line
241
            $payment->set(
241
            $payment->set( { note => $note } )->store();
242
                {
243
                    date => \'NOW()',
244
                    note => $note
245
                }
246
            )->store();
247
        }
242
        }
248
    );
243
    );
249
}
244
}
250
- 

Return to bug 41761