From a69e4e6126fc903a62c92ce96d3e99d1396db3eb Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Mon, 9 May 2016 20:33:15 -0400 Subject: [PATCH] Bug 16484 - Virtualshelves: Using no XSLTResultsDisplay breaks content display in intranet MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit To test: 1 - Create a list in staff client 2 - Set XSLTResultsDisplay to blank 3 - View list, titles don't display 4 - Apply patch 5 - View list, titles display 6 - Set XSLTResultsDisplay to default 7 - View list, titles display as before patch Signed-off-by: Marc VĂ©ron --- virtualshelves/shelves.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/virtualshelves/shelves.pl b/virtualshelves/shelves.pl index 8130c45..14bd34b 100755 --- a/virtualshelves/shelves.pl +++ b/virtualshelves/shelves.pl @@ -232,6 +232,7 @@ if ( $op eq 'view' ) { my $marcflavour = C4::Context->preference("marcflavour"); my $itemtypeinfo = getitemtypeinfo( $content->biblionumber->biblioitems->first->itemtype, 'intranet' ); + $this_item->{title} = $content->biblionumber->title; $this_item->{author} = $content->biblionumber->author; $this_item->{dateadded} = $content->dateadded; $this_item->{imageurl} = $itemtypeinfo->{imageurl}; -- 1.7.10.4