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

(-)a/C4/Circulation.pm (-2 lines)
Lines 2913-2919 sub CanBookBeRenewed { Link Here
2913
            # can be filled with available items. We can get the union of the sets simply
2913
            # can be filled with available items. We can get the union of the sets simply
2914
            # by pushing all the elements onto an array and removing the duplicates.
2914
            # by pushing all the elements onto an array and removing the duplicates.
2915
            my @reservable;
2915
            my @reservable;
2916
            my %patrons;
2917
            ITEM: while ( my $item = $items->next ) {
2916
            ITEM: while ( my $item = $items->next ) {
2918
                next if IsItemOnHoldAndFound( $item->itemnumber );
2917
                next if IsItemOnHoldAndFound( $item->itemnumber );
2919
                while ( my $patron = $patrons->next ) {
2918
                while ( my $patron = $patrons->next ) {
2920
- 

Return to bug 28013