Merge branch 'new/bug11269' into 3.14.x

This commit is contained in:
Galen Charlton 2013-11-19 16:28:57 +00:00
commit 69ec188bce

View file

@ -1681,7 +1681,9 @@ sub searchResults {
while ( ( my $column ) = $sth2->fetchrow ) { while ( ( my $column ) = $sth2->fetchrow ) {
my ( $tagfield, $tagsubfield ) = my ( $tagfield, $tagsubfield ) =
&GetMarcFromKohaField( "items." . $column, "" ); &GetMarcFromKohaField( "items." . $column, "" );
$subfieldstosearch{$column} = $tagsubfield; if ( defined $tagsubfield ) {
$subfieldstosearch{$column} = $tagsubfield;
}
} }
# handle which records to actually retrieve # handle which records to actually retrieve