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

(-)a/C4/Circulation.pm (-2 / +1 lines)
Lines 2877-2883 sub AddRenewal { Link Here
2877
                    VALUES (now(),?,?,?,?,?,?,?,?)"
2877
                    VALUES (now(),?,?,?,?,?,?,?,?)"
2878
        );
2878
        );
2879
        $sth->execute( $borrowernumber, $accountno, $charge, $manager_id,
2879
        $sth->execute( $borrowernumber, $accountno, $charge, $manager_id,
2880
            "Renewal of Rental Item " . $item_object->title . " $item->{'barcode'}",
2880
            "Renewal of Rental Item " . $biblio->title . " $item->{'barcode'}",
2881
            'Rent', $charge, $itemnumber );
2881
            'Rent', $charge, $itemnumber );
2882
    }
2882
    }
2883
2883
2884
- 

Return to bug 18276