Commit d68db405 authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 449511: get_param_list() takes no argument - Patch by Fré©ric Buclin…

Bug 449511: get_param_list() takes no argument - Patch by Fré©ric Buclin <LpSolit@gmail.com> r=bkor a=LpSolit
parent 2b40465e
......@@ -61,7 +61,7 @@ my $param_panels = Bugzilla::Config::param_panels();
foreach my $panel (keys %$param_panels) {
my $module = $param_panels->{$panel};
eval("require $module") || die $@;
my @module_param_list = "$module"->get_param_list(1);
my @module_param_list = "$module"->get_param_list();
my $item = { name => lc($panel),
current => ($current_panel eq lc($panel)) ? 1 : 0,
param_list => \@module_param_list,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment