@@ -, +, @@ category description on the left - 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 --- circ/circulation.pl | 1 + members/pay.pl | 1 + 2 files changed, 2 insertions(+) --- a/circ/circulation.pl +++ a/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, --- a/members/pay.pl +++ a/members/pay.pl @@ -139,6 +139,7 @@ sub add_accounts_to_template { $template->param( accounts => $accounts, borrower => $borrower, + categoryname => $borrower->{'description'}, total => $total, ); return; --