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

(-)a/C4/Search.pm (-6 / +4 lines)
Lines 2047-2059 sub searchResults { Link Here
2047
        }
2047
        }
2048
2048
2049
        # XSLT processing of some stuff
2049
        # XSLT processing of some stuff
2050
	use C4::Charset;
2050
        SetUTF8Flag($marcrecord);
2051
	SetUTF8Flag($marcrecord);
2052
        warn $marcrecord->as_formatted if $DEBUG;
2051
        warn $marcrecord->as_formatted if $DEBUG;
2053
	my $interface = $search_context eq 'opac' ? 'OPAC' : '';
2052
        my $interface = $search_context eq 'opac' ? 'OPAC' : '';
2054
	if (!$scan && C4::Context->preference($interface . "XSLTResultsDisplay")) {
2053
        if (!$scan && C4::Context->preference($interface . "XSLTResultsDisplay")) {
2055
            $oldbiblio->{XSLTResultsRecord} = XSLTParse4Display($oldbiblio->{biblionumber}, $marcrecord, $interface."XSLTResultsDisplay", 1, \@hiddenitems);
2054
            $oldbiblio->{XSLTResultsRecord} = XSLTParse4Display($oldbiblio->{biblionumber}, $marcrecord, $interface."XSLTResultsDisplay", 1, \@hiddenitems);
2056
	    # the last parameter tells Koha to clean up the problematic ampersand entities that Zebra outputs
2055
        # the last parameter tells Koha to clean up the problematic ampersand entities that Zebra outputs
2057
        }
2056
        }
2058
2057
2059
        # if biblio level itypes are used and itemtype is notforloan, it can't be reserved either
2058
        # if biblio level itypes are used and itemtype is notforloan, it can't be reserved either
2060
- 

Return to bug 12600