From 6ed5f49d39d53b9251bae1fc95af2778ccb64e3e Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Thu, 24 Feb 2011 13:06:39 -0500 Subject: [PATCH] Follow-up fix for Bug 4885 - Only 1 ISBN shows in non-XSL detail view Content-Type: text/plain; charset="utf-8" Fix for Bug 5551 overwrote the necessary changes to opac-detail.pl --- opac/opac-detail.pl | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/opac/opac-detail.pl b/opac/opac-detail.pl index 0685e13..3344e4b 100755 --- a/opac/opac-detail.pl +++ b/opac/opac-detail.pl @@ -198,6 +198,7 @@ for my $itm (@items) { my $dbh = C4::Context->dbh; my $marcflavour = C4::Context->preference("marcflavour"); my $marcnotesarray = GetMarcNotes ($record,$marcflavour); +my $marcisbnsarray = GetMarcISBN ($record,$marcflavour); my $marcauthorsarray = GetMarcAuthors ($record,$marcflavour); my $marcsubjctsarray = GetMarcSubjects($record,$marcflavour); my $marcseriesarray = GetMarcSeries ($record,$marcflavour); @@ -210,6 +211,7 @@ my $subtitle = GetRecordValue('subtitle', $record, GetFrameworkCode($bib MARCAUTHORS => $marcauthorsarray, MARCSERIES => $marcseriesarray, MARCURLS => $marcurlsarray, + MARCISBNS => $marcisbnsarray, norequests => $norequests, RequestOnOpac => C4::Context->preference("RequestOnOpac"), itemdata_ccode => $itemfields{ccode}, -- 1.7.3