From 534078a5c4af24a18a4fc53901905c9884dc0397 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 Content-Type: text/plain; charset="utf-8" Changes the subscription note from the opac "notes" to the proper staff client "internalnotes" field. --- catalogue/detail.pl | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 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.7.4