Lines 1835-1841
sub searchResults {
Link Here
|
1835 |
|
1835 |
|
1836 |
# populate the items hash |
1836 |
# populate the items hash |
1837 |
foreach my $code ( keys %subfieldstosearch ) { |
1837 |
foreach my $code ( keys %subfieldstosearch ) { |
1838 |
$item->{$code} = $field->subfield( $subfieldstosearch{$code} ); |
1838 |
if ( defined( $subfieldstosearch{$code} ) ) { |
|
|
1839 |
$item->{$code} = $field->subfield( $subfieldstosearch{$code} ); |
1840 |
} |
1839 |
} |
1841 |
} |
1840 |
$item->{description} = $itemtypes{ $item->{itype} }{description}; |
1842 |
$item->{description} = $itemtypes{ $item->{itype} }{description}; |
1841 |
|
1843 |
|
1842 |
- |
|
|