View | Details | Raw Unified | Return to bug 4032
Collapse All | Expand All

(-)a/C4/Search.pm (-3 / +1 lines)
Lines 1781-1788 sub searchResults { Link Here
1781
        $debug && warn $marcrecord->as_formatted;
1781
        $debug && warn $marcrecord->as_formatted;
1782
        my $interface = $search_context eq 'opac' ? 'OPAC' : '';
1782
        my $interface = $search_context eq 'opac' ? 'OPAC' : '';
1783
        if (!$scan && C4::Context->preference($interface . "XSLTResultsDisplay")) {
1783
        if (!$scan && C4::Context->preference($interface . "XSLTResultsDisplay")) {
1784
            $oldbiblio->{XSLTResultsRecord} = XSLTParse4Display($oldbiblio->{biblionumber}, $marcrecord, 'Results',
1784
            $oldbiblio->{XSLTResultsRecord} = XSLTParse4Display($oldbiblio->{biblionumber}, $marcrecord, C4::Context->preference($interface . "XSLTResultsDisplay"), 1);
1785
                                                                $search_context, 1);
1786
	    # the last parameter tells Koha to clean up the problematic ampersand entities that Zebra outputs
1785
	    # the last parameter tells Koha to clean up the problematic ampersand entities that Zebra outputs
1787
        }
1786
        }
1788
1787
1789
- 

Return to bug 4032