]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 449511: get_param_list() takes no argument - Patch by Frédéric Buclin <LpSolit...
authorlpsolit%gmail.com <>
Fri, 22 Aug 2008 21:00:33 +0000 (21:00 +0000)
committerlpsolit%gmail.com <>
Fri, 22 Aug 2008 21:00:33 +0000 (21:00 +0000)
editparams.cgi

index 7de38aa7b3c64a1ba5e130a7be0a7dda98e2b776..2c3e4089ef2c0e3d8c34e058188cd18e8945c529 100755 (executable)
@@ -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,