diff options
author | mkanat%kerio.com <> | 2006-03-09 08:08:57 +0000 |
---|---|---|
committer | mkanat%kerio.com <> | 2006-03-09 08:08:57 +0000 |
commit | a2eca825a00b33912ec60f797d1112115772ec30 (patch) | |
tree | da4d1e84679afe825f8eb0ef4b1da7d5bc463d67 /buglist.cgi | |
parent | Bug 323912: When a group cannot be deleted because it is in used, ThrowUserEr... (diff) | |
download | bugzilla-a2eca825a00b33912ec60f797d1112115772ec30.tar.gz bugzilla-a2eca825a00b33912ec60f797d1112115772ec30.tar.bz2 bugzilla-a2eca825a00b33912ec60f797d1112115772ec30.zip |
Bug 328638: Remove @::legal_keywords and %::keywordsbyname
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=justdave
Diffstat (limited to 'buglist.cgi')
-rwxr-xr-x | buglist.cgi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/buglist.cgi b/buglist.cgi index c778c5f10..0e6fb2ba5 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -41,12 +41,12 @@ use Bugzilla::Constants; use Bugzilla::User; use Bugzilla::Bug; use Bugzilla::Product; +use Bugzilla::Keyword; # Include the Bugzilla CGI and general utility library. require "globals.pl"; use vars qw(@components - @legal_keywords @legal_platform @legal_priority @legal_product @@ -1042,7 +1042,7 @@ $vars->{'currenttime'} = time(); # The following variables are used when the user is making changes to multiple bugs. if ($dotweak) { $vars->{'dotweak'} = 1; - $vars->{'use_keywords'} = 1 if @::legal_keywords; + $vars->{'use_keywords'} = 1 if Bugzilla::Keyword::keyword_count(); $vars->{'products'} = Bugzilla->user->get_enterable_products; $vars->{'platforms'} = \@::legal_platform; |