Browse Source

Merge branch 'new/bug11269' into 3.14.x

3.14.x
Galen Charlton 11 years ago
parent
commit
69ec188bce
  1. 4
      C4/Search.pm

4
C4/Search.pm

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

Loading…
Cancel
Save