From: Liz Rea Date: Fri, 20 May 2011 19:41:20 +0000 (-0500) Subject: Bug 6258 - Guided reports wizard 'Build new' brings up empty page X-Git-Url: http://git.rot13.org/?p=koha.git;a=commitdiff_plain;h=14364d9866dd65abb737a59e49f297328edde83d Bug 6258 - Guided reports wizard 'Build new' brings up empty page 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. Signed-off-by: Owen Leonard Signed-off-by: Chris Cormack --- diff --git a/reports/guided_reports.pl b/reports/guided_reports.pl index 600ac29890..40983fd421 100755 --- a/reports/guided_reports.pl +++ b/reports/guided_reports.pl @@ -621,7 +621,7 @@ sub header_cell_loop { } foreach (1..6) { - $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(),