From 62d5a237ed9f8e4f32a799f3a998893fb24a9797 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Sun, 22 Nov 2015 03:25:58 +0100 Subject: [PATCH] Bug 14349: Checkouts and Fines tab missing category description on the left When navigating the tabs in the patron account, for 2 tabs the patron category description is missing above the tabs. To test: - Go to a patron account in staff - Click through the tabs - Verify that for Checkouts and Fines the category description is missing above the tabs - Apply patch - Verify the description is now shown Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart --- circ/circulation.pl | 1 + members/pay.pl | 1 + 2 files changed, 2 insertions(+) diff --git a/circ/circulation.pl b/circ/circulation.pl index f16475e..3748d97 100755 --- a/circ/circulation.pl +++ b/circ/circulation.pl @@ -596,6 +596,7 @@ $template->param( findborrower => $findborrower, borrower => $borrower, borrowernumber => $borrowernumber, + categoryname => $borrower->{'description'}, branch => $branch, branchname => GetBranchName($borrower->{'branchcode'}), printer => $printer, diff --git a/members/pay.pl b/members/pay.pl index a4f73f2..8a1b499 100755 --- a/members/pay.pl +++ b/members/pay.pl @@ -139,6 +139,7 @@ sub add_accounts_to_template { $template->param( accounts => $accounts, borrower => $borrower, + categoryname => $borrower->{'description'}, total => $total, ); return; -- 2.1.0