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

(-)a/C4/Circulation.pm (-2 / +1 lines)
Lines 1546-1552 sub AddIssue { Link Here
1546
                $datedue,
1546
                $datedue,
1547
                $issuedate,    # here interpreted as the renewal date
1547
                $issuedate,    # here interpreted as the renewal date
1548
            );
1548
            );
1549
            $issue = Koha::Checkouts->find( { itemnumber => $item_object->itemnumber } );
1549
            $issue = $item_object->checkout;
1550
        }
1550
        }
1551
        else {
1551
        else {
1552
1552
1553
- 

Return to bug 34212