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

(-)a/C4/Circulation.pm (-1 / +1 lines)
Lines 1988-1993 sub AddReturn { Link Here
1988
1988
1989
        if ( $issue and $issue->is_overdue ) {
1989
        if ( $issue and $issue->is_overdue ) {
1990
        # fix fine days
1990
        # fix fine days
1991
            $today = $return_date if $return_date;
1991
            $today = $dropboxdate if $dropbox;
1992
            $today = $dropboxdate if $dropbox;
1992
            my ($debardate,$reminder) = _debar_user_on_return( $patron_unblessed, $item, dt_from_string($issue->date_due), $today );
1993
            my ($debardate,$reminder) = _debar_user_on_return( $patron_unblessed, $item, dt_from_string($issue->date_due), $today );
1993
            if ($reminder){
1994
            if ($reminder){
1994
- 

Return to bug 20660