From 06942208812172a18739b5462e2ae8327c6de979 Mon Sep 17 00:00:00 2001 From: Chris Cormack Date: Mon, 14 Jan 2008 17:00:27 -0600 Subject: [PATCH] Fixing a bug where a cgi object wasnt being passed, in the reports dictionary Signed-off-by: Joshua Ferraro --- reports/dictionary.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reports/dictionary.pl b/reports/dictionary.pl index d8c5ab945b..5818905910 100755 --- a/reports/dictionary.pl +++ b/reports/dictionary.pl @@ -80,7 +80,7 @@ elsif ($phase eq 'New Term step 2'){ elsif ($phase eq 'New Term step 3'){ # Choosing the columns my $area = $input->param('areas'); - my $columns = get_columns($area); + my $columns = get_columns($area,$input); my $definition_name=$input->param('definition_name'); my $definition_description=$input->param('definition_description'); $template->param( 'step_3' => 1, -- 2.39.2