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

(-)a/C4/Search.pm (-3 / +2 lines)
Lines 2200-2206 sub searchResults { Link Here
2200
					$other_items->{$key}->{count}++ if $item->{$hbranch};
2200
					$other_items->{$key}->{count}++ if $item->{$hbranch};
2201
					$other_items->{$key}->{location} = $shelflocations->{ $item->{location} };
2201
					$other_items->{$key}->{location} = $shelflocations->{ $item->{location} };
2202
					$other_items->{$key}->{description} = $item->{description};
2202
					$other_items->{$key}->{description} = $item->{description};
2203
					$other_items->{$key}->{imageurl} = getitemtypeimagelocation( $search_context->{'interface'}, $itemtypes{ $item->{itype} }->{imageurl} );
2203
                    $other_items->{$key}->{imageurl} = getitemtypeimagelocation( $search_context->{'interface'}, $itemtypes{ $item->{itype} }->{imageurl} );
2204
                }
2204
                }
2205
                # item is available
2205
                # item is available
2206
                else {
2206
                else {
Lines 2211-2217 sub searchResults { Link Here
2211
                    	$available_items->{$prefix}->{$_} = $item->{$_};
2211
                    	$available_items->{$prefix}->{$_} = $item->{$_};
2212
					}
2212
					}
2213
					$available_items->{$prefix}->{location} = $shelflocations->{ $item->{location} };
2213
					$available_items->{$prefix}->{location} = $shelflocations->{ $item->{location} };
2214
					$available_items->{$prefix}->{imageurl} = getitemtypeimagelocation( $search_context->{'interface'}, $itemtypes{ $item->{itype} }->{imageurl} );
2214
                    $available_items->{$prefix}->{imageurl} = getitemtypeimagelocation( $search_context->{'interface'}, $itemtypes{ $item->{itype} }->{imageurl} );
2215
                }
2215
                }
2216
            }
2216
            }
2217
        }    # notforloan, item level and biblioitem level
2217
        }    # notforloan, item level and biblioitem level
2218
- 

Return to bug 14385