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

(-)a/C4/Circulation.pm (-1 / +2 lines)
Lines 2610-2615 sub AddRenewal { Link Here
2610
2610
2611
    # Log the renewal
2611
    # Log the renewal
2612
    UpdateStats( $branch, 'renew', $charge, '', $itemnumber, $item->{itype}, $borrowernumber, undef, $item->{'ccode'});
2612
    UpdateStats( $branch, 'renew', $charge, '', $itemnumber, $item->{itype}, $borrowernumber, undef, $item->{'ccode'});
2613
    logaction("CIRCULATION", "RENEW", $borrowernumber, $item->{'itemnumber'})
2614
        if C4::Context->preference("IssueLog");
2613
	return $datedue;
2615
	return $datedue;
2614
}
2616
}
2615
2617
2616
- 

Return to bug 8752