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

(-)a/C4/Circulation.pm (-2 / +1 lines)
Lines 1988-1994 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 = dt_from_string($return_date) if $return_date;
1992
            $today = $dropboxdate if $dropbox;
1992
            $today = $dropboxdate if $dropbox;
1993
            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 );
1994
            if ($reminder){
1994
            if ($reminder){
1995
- 

Return to bug 21188