From 21ed220071ec6cf71e4344bff2e99f419d467beb Mon Sep 17 00:00:00 2001 From: Alex Arnaud Date: Mon, 27 Feb 2012 11:48:21 +0100 Subject: [PATCH] Bug 6919 - Follow up - call to XSLTParse4Display is now made twice in Search.pm --- C4/Search.pm | 19 +------------------ 1 files changed, 1 insertions(+), 18 deletions(-) diff --git a/C4/Search.pm b/C4/Search.pm index 77a2aac..60635a3 100644 --- a/C4/Search.pm +++ b/C4/Search.pm @@ -1783,7 +1783,7 @@ sub searchResults { my $interface = $search_context eq 'opac' ? 'OPAC' : ''; if (!$scan && C4::Context->preference($interface . "XSLTResultsDisplay")) { $oldbiblio->{XSLTResultsRecord} = XSLTParse4Display($oldbiblio->{biblionumber}, $marcrecord, 'Results', - $search_context, 1); + $search_context, 1, \@hiddenitems); # the last parameter tells Koha to clean up the problematic ampersand entities that Zebra outputs } @@ -1842,23 +1842,6 @@ sub searchResults { $oldbiblio->{'alternateholdings_count'} = $alternateholdingscount; } - # XSLT processing of some stuff - if (!$scan && $search_context eq 'opac' && C4::Context->preference("OPACXSLTResultsDisplay")) { - SetUTF8Flag($marcrecord); - $debug && warn $marcrecord->as_formatted; - # FIXME note that XSLTResultsDisplay (use of XSLT to format staff interface bib search results) - # is not implemented yet - $oldbiblio->{XSLTResultsRecord} - = XSLTParse4Display($oldbiblio->{biblionumber}, - $marcrecord, - 'Results', - $search_context, - 1, # clean up the problematic ampersand entities that Zebra outputs - \@hiddenitems - ); - - } - push( @newresults, $oldbiblio ); } -- 1.7.0.4