From 129c28d6d1e9c63d12fd55a2798f8952bc3f61e5 Mon Sep 17 00:00:00 2001 From: Chris Cormack Date: Tue, 8 Sep 2009 18:48:54 +1200 Subject: [PATCH] Fixing bug introduced by a cherry-pick conflict --- C4/Search.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Search.pm b/C4/Search.pm index a80c79fd02..172b12cfb8 100644 --- a/C4/Search.pm +++ b/C4/Search.pm @@ -1184,7 +1184,7 @@ sub searchResults { else { $times = $hits; # FIXME: if $hits is undefined, why do we want to equal it? } - + my $marcflavour = C4::Context->preference("marcflavour"); # loop through all of the records we've retrieved for ( my $i = $offset ; $i <= $times - 1 ; $i++ ) { my $marcrecord = MARC::File::USMARC::decode( $marcresults[$i] ); -- 2.39.5