From 593cb7e27e7e5cfbde5e859bf452ca2f0ec8709f Mon Sep 17 00:00:00 2001 From: Henri-Damien LAURENT Date: Fri, 4 Jan 2008 13:06:49 -0600 Subject: [PATCH] Bug Fixing : title not displayed in UNIMARC use of record->title() for UNIMARC is not correct, since MARC::Record functions are based on MARC21 marckup. What should be used instead is : GetBiblioData Signed-off-by: Chris Cormack Signed-off-by: Joshua Ferraro --- catalogue/MARCdetail.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/catalogue/MARCdetail.pl b/catalogue/MARCdetail.pl index 3919c488e3..40437e6bed 100755 --- a/catalogue/MARCdetail.pl +++ b/catalogue/MARCdetail.pl @@ -70,7 +70,7 @@ my $subscriptionid = $query->param('subscriptionid'); my $tagslib = &GetMarcStructure(1,$frameworkcode); my $record = GetMarcBiblio($biblionumber); - +my $biblio = GetBiblioData($biblionumber); # open template my ( $template, $loggedinuser, $cookie ) = get_template_and_user( { @@ -86,7 +86,7 @@ my ( $template, $loggedinuser, $cookie ) = get_template_and_user( #count of item linked my $itemcount = GetItemsCount($biblionumber); $template->param( count => $itemcount, - bibliotitle => $record->title(), ); + bibliotitle => $biblio->{title}, ); #Getting the list of all frameworks my $queryfwk = -- 2.39.5