[Koha-patches] [PATCH 8/8] Bug 6258 - Guided reports wizard 'Build new' brings up empty page

Liz Rea lrea at nekls.org
Fri May 20 21:43:33 CEST 2011


Patch fixes a TT error that caused Build New to be empty.

To test:
Click More -> Reports, you should see the welcome page and be able to step through creating the report.
---
 reports/guided_reports.pl |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/reports/guided_reports.pl b/reports/guided_reports.pl
index 600ac29..a341241 100755
--- a/reports/guided_reports.pl
+++ b/reports/guided_reports.pl
@@ -621,7 +621,8 @@ sub header_cell_loop {
 }
 
 foreach (1..6) {
-    $template->param('build' . $_) and $template->param(buildx => $_) and last;
+#    $template->param('build' . $_) and $template->param(buildx => $_) and last;
+     $template->{VARS}->{'build' . $_} and $template->{VARS}->{'buildx' . $_} and last;
 }
 $template->param(   'referer' => $input->referer(),
                     'DHTMLcalendar_dateformat' => C4::Dates->DHTMLcalendar(),
-- 
1.7.2.5



More information about the Koha-patches mailing list