From ce4727ef2e546986a85220ae97436b8702bc2b48 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Fri, 1 Aug 2014 14:58:35 -0400 Subject: [PATCH] Bug 12693 - colspan calculation done by members/statistics.pl should be moved to template Content-Type: text/plain; charset="utf-8" It is not necessary for the patron statistics script to pass a colspan value to the template. The number can be output using Template::Toolkit syntax. To test, view the statistics page for a patron. Confirm that the "Total" cell in the footer spans the correct number of columns. Test with various numbers of fields in the StatisticsFields system preference. --- .../prog/en/modules/members/statistics.tt | 2 +- members/statistics.pl | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/statistics.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/statistics.tt index b034613..876559a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/statistics.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/statistics.tt @@ -78,7 +78,7 @@ - TOTAL + TOTAL [% count_total_precedent_state %] [% count_total_issues %] [% count_total_issues_returned %] diff --git a/members/statistics.pl b/members/statistics.pl index 15a1c69..af31815 100755 --- a/members/statistics.pl +++ b/members/statistics.pl @@ -105,7 +105,6 @@ $template->param( datas => $datas, address => $address, column_names => \@statistic_column_names, - length_keys => scalar( @statistic_column_names), count_total_issues => $count_total_issues, count_total_issues_returned => $count_total_issues_returned, count_total_precedent_state => $count_total_precedent_state, -- 1.7.9.5