From 626ee0a45cc9d796d84591800525f173f9bdf78a Mon Sep 17 00:00:00 2001 From: ruth@bywatersolutions.com Date: Tue, 24 May 2011 15:56:38 -0400 Subject: [PATCH] [SIGNED-OFF] Bug 6362: fixes display to re-embed items in OPAC MARC view Content-Type: text/plain; charset="utf-8" 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 --- opac/opac-MARCdetail.pl | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/opac/opac-MARCdetail.pl b/opac/opac-MARCdetail.pl index 8e492aa..7544902 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; -- 1.7.2.5