From b87c2a55ffda2cb823b2f853062ae09f2b8d92bf Mon Sep 17 00:00:00 2001 From: Ian Walls Date: Fri, 21 Oct 2011 11:43:17 -0400 Subject: [PATCH] Bug 7076: Lists render OPAC XSLT on staff side Adds a small check in C4::VirtualShelves::Page::shelfpage to only render OPACResultsXSLT if the $type is 'opac'. Since parsing the XML is such an expensive thing, and the resulting XSLTBloc is not used on the staff side, this will increase performance for Lists in the intranet --- C4/VirtualShelves/Page.pm | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/C4/VirtualShelves/Page.pm b/C4/VirtualShelves/Page.pm index 161a7aa..8a17182 100644 --- a/C4/VirtualShelves/Page.pm +++ b/C4/VirtualShelves/Page.pm @@ -209,7 +209,7 @@ sub shelfpage ($$$$$) { my $record = GetMarcBiblio($biblionumber); $this_item->{XSLTBloc} = XSLTParse4Display($biblionumber, $record, 'Results', 'opac') - if C4::Context->preference("OPACXSLTResultsDisplay"); + if C4::Context->preference("OPACXSLTResultsDisplay") && $type eq 'opac'; # the virtualshelfcontents table does not store these columns nor are they retrieved from the items # and itemtypes tables, so I'm commenting them out for now to quiet the log -crn -- 1.7.4.1