From 186a9d6c39f0332a1dd2c14541edf4cea2216b0d Mon Sep 17 00:00:00 2001 From: Garry Collum Date: Sat, 3 Jul 2010 18:19:19 -0400 Subject: [PATCH] Bug 4937: Fixes XHTML in the pagination links of a saved report. Content-Type: text/plain; charset="utf-8" --- reports/guided_reports.pl | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/reports/guided_reports.pl b/reports/guided_reports.pl index 269f7a8..4d7bafb 100755 --- a/reports/guided_reports.pl +++ b/reports/guided_reports.pl @@ -501,7 +501,7 @@ elsif ($phase eq 'Run this report'){ } my $totpages = int($total/$limit) + (($total % $limit) > 0 ? 1 : 0); - my $url = "/cgi-bin/koha/reports/guided_reports.pl?reports=$report&phase=Run%20this%20report"; + my $url = "/cgi-bin/koha/reports/guided_reports.pl?reports=$report&phase=Run%20this%20report"; $template->param( 'results' => \@rows, 'sql' => $sql, -- 1.5.6.5