@@ -, +, @@ Statistics wizards -> Patrons. Observe that you see a lot of debug information. no longer see the debug information. --- koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/borrowers_stats.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/reports/borrowers_stats.tt | 2 ++ reports/borrowers_stats.pl | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/borrowers_stats.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/borrowers_stats.tt @@ -6,7 +6,7 @@

If you choose to output to the browser your results will print to the screen.

-

Based on your selections, you may see some query information above your results table. You can also choose to export to a file that you can manipulate to your needs.

+

You can also choose to export to a file that you can manipulate to your needs.

See the full documentation for Patron Statistics in the manual (online).

--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/borrowers_stats.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/borrowers_stats.tt @@ -24,12 +24,14 @@ [% FOREACH mainloo IN mainloop %]

Patrons statistics

[% IF ( mainloo.loopfilter ) %] + [% IF ( filtered_on_debug ) %]

Filtered on:

[% FOREACH loopfilte IN mainloo.loopfilter %]

[% loopfilte.crit %] = [% loopfilte.filter %]

[% END %] + [% END %] [% END %] --- a/reports/borrowers_stats.pl +++ a/reports/borrowers_stats.pl @@ -76,6 +76,7 @@ my ($template, $borrowernumber, $cookie) }); $template->param(do_it => $do_it); if ($do_it) { + $template->param(filtered_on_debug => 0); my $attributes; if (C4::Context->preference('ExtendedPatronAttributes')) { $attributes = parse_extended_patron_attributes($input); --