From 00fc740011b4e7c5dba3c1eda7f165392824b957 Mon Sep 17 00:00:00 2001 From: oleonard Date: Mon, 12 Jul 2004 20:44:48 +0000 Subject: [PATCH] Adding overduecount, issuecount, and finetotal variables to template --- circ/circulation.pl | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/circ/circulation.pl b/circ/circulation.pl index 9ebdd3307f..e635ba70ff 100755 --- a/circ/circulation.pl +++ b/circ/circulation.pl @@ -107,6 +107,11 @@ if ($findborrower) { my $borrower; if ($borrowernumber) { $borrower = getpatroninformation(\%env,$borrowernumber,0); + + my ($od,$issue,$fines)=borrdata2(\%env,$borrowernumber); + $template->param(overduecount => $od, + issuecount => $issue, + finetotal => $fines); } -- 2.20.1