From 75b776abf521c2d3f6bebd1fe53405bc52b8d8ce Mon Sep 17 00:00:00 2001 From: Amit Gupta Date: Mon, 15 Nov 2010 16:23:49 +0530 Subject: [PATCH] [SIGNED-OFF] Bug 5409 - Fix call number not shown on opac search result page Content-Type: text/plain; charset="utf-8" Signed-off-by: Owen Leonard --- opac/opac-search.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opac/opac-search.pl b/opac/opac-search.pl index 1e5a0d7..c3af6d2 100755 --- a/opac/opac-search.pl +++ b/opac/opac-search.pl @@ -689,7 +689,7 @@ for (my $i=0;$i<@servers;$i++) { $hide = ($hide =~ m/\S/) if $hide; # Just in case it has some spaces/new lines $template->param( SEARCH_RESULTS => \@newresults, - OPACItemsResultsDisplay => (C4::Context->preference("OPACItemsResultsDisplay") eq "itemdetails"?1:0), + OPACItemsResultsDisplay => (C4::Context->preference("OPACItemsResultsDisplay")), suppress_result_number => $hide, ); if (C4::Context->preference("OPACLocalCoverImages")){ -- 1.7.9.5