From: Frédéric Buclin Date: Tue, 13 Jul 2010 22:37:36 +0000 (+0200) Subject: Bug 577851: config.cgi crashes in 3.4.7, due to Bugzilla::Product::preload (backout... X-Git-Tag: bugzilla-3.4.8~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c27b3889c6da314e87e1cfa87b266810c350a4ea;p=thirdparty%2Fbugzilla.git Bug 577851: config.cgi crashes in 3.4.7, due to Bugzilla::Product::preload (backout of bug 553255) r/a=mkanat --- diff --git a/config.cgi b/config.cgi index abf2678403..b03ac1d8eb 100755 --- a/config.cgi +++ b/config.cgi @@ -34,7 +34,6 @@ use Bugzilla; use Bugzilla::Constants; use Bugzilla::Error; use Bugzilla::Keyword; -use Bugzilla::Product; use Bugzilla::Status; use Bugzilla::Field; @@ -78,8 +77,6 @@ if ($cgi->param('product')) { $vars->{'products'} = $user->get_selectable_products; } -Bugzilla::Product::preload($vars->{'products'}); - # Allow consumers to specify whether or not they want flag data. if (defined $cgi->param('flags')) { $vars->{'show_flags'} = $cgi->param('flags');