diff options
author | travis%sedsystems.ca <> | 2005-01-19 01:53:50 +0100 |
---|---|---|
committer | travis%sedsystems.ca <> | 2005-01-19 01:53:50 +0100 |
commit | 014b25fed9a4a44963c63582b177fd8ac0ea438f (patch) | |
tree | 0a0e004fab30a94cb60462314536590567ae02de /buglist.cgi | |
parent | 47552954db6be6abcf3c27339fdb1063637c0066 (diff) | |
download | bugzilla-014b25fed9a4a44963c63582b177fd8ac0ea438f.tar.gz bugzilla-014b25fed9a4a44963c63582b177fd8ac0ea438f.tar.xz |
Bug 276840 : Move $::defaultqueryname out of globals.pl into Bugzilla/Constants.pm
Patch by Max K-A <mkanat@kerio.com> r=vladd a=justdave
Diffstat (limited to 'buglist.cgi')
-rwxr-xr-x | buglist.cgi | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/buglist.cgi b/buglist.cgi index 6df402781..8abfc6869 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -44,7 +44,6 @@ require "CGI.pl"; use vars qw($db_name @components - $defaultqueryname @legal_keywords @legal_platform @legal_priority @@ -340,7 +339,7 @@ elsif (($::FORM{'cmdtype'} eq "doit") && $::FORM{'remtype'}) { if ($::FORM{'remtype'} eq "asdefault") { Bugzilla->login(LOGIN_REQUIRED); my $userid = Bugzilla->user->id; - my $qname = SqlQuote($::defaultqueryname); + my $qname = SqlQuote(DEFAULT_QUERY_NAME); my $qbuffer = SqlQuote($::buffer); SendSQL("LOCK TABLES namedqueries WRITE"); |