From 586a476ec4a62f47128d16dc77f2d1145e50a493 Mon Sep 17 00:00:00 2001 From: "ruth@bywatersolutions.com" Date: Tue, 24 May 2011 15:56:38 -0400 Subject: [PATCH] Bug 6362: fixes display to re-embed items in OPAC MARC view This patch is a followon to repair a side-effect of Bug 5579. A similar patch is already pushed to make this change for ISBD view. Signed-off-by: Liz Rea Signed-off-by: Chris Cormack --- opac/opac-MARCdetail.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opac/opac-MARCdetail.pl b/opac/opac-MARCdetail.pl index 8e492aa701..754490208f 100755 --- a/opac/opac-MARCdetail.pl +++ b/opac/opac-MARCdetail.pl @@ -61,7 +61,7 @@ my $biblionumber = $query->param('biblionumber'); my $itemtype = &GetFrameworkCode($biblionumber); my $tagslib = &GetMarcStructure( 0, $itemtype ); my $biblio = GetBiblioData($biblionumber); -my $record = GetMarcBiblio($biblionumber); +my $record = GetMarcBiblio($biblionumber, 1); if ( ! $record ) { print $query->redirect("/cgi-bin/koha/errors/404.pl"); exit; -- 2.20.1