From 0b7e0b8ab02063c92d9629a460aa1e09a9c0d1bd 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 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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 Signed-off-by: Kyle M Hall (cherry picked from commit 9e518de90f3baafc5d44eefd423e3ee2a491c60d) Signed-off-by: Julian Maurice (cherry picked from commit df1a9a98fd6f3186a05f9eeead63de1e2b3c39ff) Signed-off-by: Frédéric Demians --- circ/circulation.pl | 1 + members/pay.pl | 1 + 2 files changed, 2 insertions(+) diff --git a/circ/circulation.pl b/circ/circulation.pl index ff04623cae..dc6e1ae745 100755 --- a/circ/circulation.pl +++ b/circ/circulation.pl @@ -542,6 +542,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 07217fd6ab..d541b0bd2f 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.39.5