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

(-)a/C4/Circulation.pm (-1 / +3 lines)
Lines 2172-2177 sub MarkIssueReturned { Link Here
2172
        # Update the returndate
2172
        # Update the returndate
2173
        $dbh->do( $query, undef, @bind );
2173
        $dbh->do( $query, undef, @bind );
2174
2174
2175
        # We just updated the returndate, so we need to refetch $issue
2176
        $issue->discard_changes;
2177
2175
        # Create the old_issues entry
2178
        # Create the old_issues entry
2176
        my $old_checkout = Koha::Old::Checkout->new($issue->unblessed)->store;
2179
        my $old_checkout = Koha::Old::Checkout->new($issue->unblessed)->store;
2177
2180
2178
- 

Return to bug 19487