From 5a541da6ce3372243c6e866883117a4e4d6a7395 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Tue, 4 Dec 2007 15:00:06 -0600 Subject: [PATCH] Finishing changes to sidebar menu (change to boraccount.pl, as with moremember.pl, is to add flag so that menu can highlight current page). Signed-off-by: Chris Cormack Signed-off-by: Joshua Ferraro --- koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc | 5 ++--- members/boraccount.pl | 12 ++++++------ 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc index 7a605cd8fb..6050dc6ec4 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc @@ -31,10 +31,9 @@ + diff --git a/members/boraccount.pl b/members/boraccount.pl index 35cbbbfad1..eec30d18d8 100755 --- a/members/boraccount.pl +++ b/members/boraccount.pl @@ -87,23 +87,23 @@ for (my $i=0;$i<$numaccts;$i++){ } $template->param( - firstname => $data->{'firstname'}, - surname => $data->{'surname'}, - borrowernumber => $borrowernumber, + finesview => 1, + firstname => $data->{'firstname'}, + surname => $data->{'surname'}, + borrowernumber => $borrowernumber, cardnumber => $data->{'cardnumber'}, categorycode => $data->{'categorycode'}, category_type => $data->{'category_type'}, category_description => $data->{'description'}, - address => $data->{'address'}, + address => $data->{'address'}, address2 => $data->{'address2'}, city => $data->{'city'}, zipcode => $data->{'zipcode'}, phone => $data->{'phone'}, email => $data->{'email'}, branchcode => $data->{'branchcode'}, - total => sprintf("%.2f",$total), + total => sprintf("%.2f",$total), totalcredit => $totalcredit, - finesview => 1, accounts => \@accountrows ); output_html_with_http_headers $input, $cookie, $template->output; -- 2.11.0