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 /Bugzilla | |
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 'Bugzilla')
-rw-r--r-- | Bugzilla/Constants.pm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Bugzilla/Constants.pm b/Bugzilla/Constants.pm index 7e22ed2f7..768b0e684 100644 --- a/Bugzilla/Constants.pm +++ b/Bugzilla/Constants.pm @@ -63,6 +63,7 @@ use base qw(Exporter); GROUP_VISIBLE DEFAULT_COLUMN_LIST + DEFAULT_QUERY_NAME ); @Bugzilla::Constants::EXPORT_OK = qw(contenttypes); @@ -207,4 +208,8 @@ use constant DEFAULT_COLUMN_LIST => ( "bug_status", "resolution", "short_short_desc" ); +# Used by query.cgi and buglist.cgi as the named-query name +# for the default settings. +use constant DEFAULT_QUERY_NAME => '(Default query)'; + 1; |