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

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

Return to bug 8752