Lines 1842-1848
sub searchResults {
Link Here
|
1842 |
|
1842 |
|
1843 |
# populate the items hash |
1843 |
# populate the items hash |
1844 |
foreach my $code ( keys %subfieldstosearch ) { |
1844 |
foreach my $code ( keys %subfieldstosearch ) { |
1845 |
$item->{$code} = $field->subfield( $subfieldstosearch{$code} ); |
1845 |
if ( defined( $subfieldstosearch{$code} ) ) { |
|
|
1846 |
$item->{$code} = $field->subfield( $subfieldstosearch{$code} ); |
1847 |
} |
1846 |
} |
1848 |
} |
1847 |
$item->{description} = $itemtypes{ $item->{itype} }{description}; |
1849 |
$item->{description} = $itemtypes{ $item->{itype} }{description}; |
1848 |
|
1850 |
|
1849 |
- |
|
|