From b7265e89d7ae3971b719d628ce66fc5577308ab4 Mon Sep 17 00:00:00 2001 From: David Cook Date: Tue, 4 Sep 2012 12:19:41 +1000 Subject: [PATCH] Bug 8717 - Wrong subscription notes are showing in catalogue detail view of serials in staff client Changes the subscription note from the opac "notes" to the proper staff client "internalnotes" field. Signed-off-by: Jonathan Druart Signed-off-by: Paul Poulain Signed-off-by: Chris Cormack --- catalogue/detail.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/catalogue/detail.pl b/catalogue/detail.pl index de355faffc..f54cac0dcb 100755 --- a/catalogue/detail.pl +++ b/catalogue/detail.pl @@ -149,7 +149,7 @@ foreach my $subscription (@subscriptions) { my %cell; my $serials_to_display; $cell{subscriptionid} = $subscription->{subscriptionid}; - $cell{subscriptionnotes} = $subscription->{notes}; + $cell{subscriptionnotes} = $subscription->{internalnotes}; $cell{branchcode} = $subscription->{branchcode}; $cell{branchname} = GetBranchName($subscription->{branchcode}); $cell{hasalert} = $subscription->{hasalert}; -- 2.39.5