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

(-)a/C4/Search.pm (-2 / +1 lines)
Lines 2084-2090 sub searchResults { Link Here
2084
            {
2084
            {
2085
                $onloan_count++;
2085
                $onloan_count++;
2086
                my $key = $prefix . $item->{onloan} . $item->{barcode};
2086
                my $key = $prefix . $item->{onloan} . $item->{barcode};
2087
                $onloan_items->{$key}->{due_date} = output_pref( { dt => scalar dt_from_string( $item->{onloan} ), dateonly => 1 } );
2087
                $onloan_items->{$key}->{due_date} = output_pref({ str => $item->{onloan}, dateonly => 1 });
2088
                $onloan_items->{$key}->{count}++ if $item->{$hbranch};
2088
                $onloan_items->{$key}->{count}++ if $item->{$hbranch};
2089
                $onloan_items->{$key}->{branchname}     = $item->{branchname};
2089
                $onloan_items->{$key}->{branchname}     = $item->{branchname};
2090
                $onloan_items->{$key}->{location}       = $shelflocations->{ $item->{location} };
2090
                $onloan_items->{$key}->{location}       = $shelflocations->{ $item->{location} };
2091
- 

Return to bug 17502