From 905458913dd63aab0863baa8b5e37813533adb19 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 --- catalogue/detail.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/catalogue/detail.pl b/catalogue/detail.pl index f2ad4eb..7126257 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}; -- 1.7.10.4