diff options
Diffstat (limited to 'describekeywords.cgi')
-rwxr-xr-x | describekeywords.cgi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/describekeywords.cgi b/describekeywords.cgi index 31bf0c13e..ac18d5f22 100755 --- a/describekeywords.cgi +++ b/describekeywords.cgi @@ -18,16 +18,16 @@ use Bugzilla::Keyword; my $user = Bugzilla->login(); -my $cgi = Bugzilla->cgi; +my $cgi = Bugzilla->cgi; my $template = Bugzilla->template; -my $vars = {}; +my $vars = {}; # Run queries against the shadow DB. Bugzilla->switch_to_shadow_db; $vars->{'keywords'} = Bugzilla::Keyword->get_all_with_bug_count(); if (!@{$vars->{keywords}}) { - ThrowUserError("no_keywords"); + ThrowUserError("no_keywords"); } print $cgi->header(); |