diff options
author | jocuri%softhome.net <> | 2005-01-17 05:27:24 +0100 |
---|---|---|
committer | jocuri%softhome.net <> | 2005-01-17 05:27:24 +0100 |
commit | 698c612d21b422d02797dbf30c8bdef2bc0bb9ad (patch) | |
tree | 0b50a27a6b2ac30886bf285b4cb6c6deb6a1c08d /Bugzilla | |
parent | c3274f47d71e1526d9dbe33b158b1e4e8dd272f6 (diff) | |
download | bugzilla-698c612d21b422d02797dbf30c8bdef2bc0bb9ad.tar.gz bugzilla-698c612d21b422d02797dbf30c8bdef2bc0bb9ad.tar.xz |
Patch for bug 276842: Move @default_column_list out of globals.pl into Bugzilla/Constants.pm; patch by Max K-A <mkanat@kerio.com>, r=vladd, a=myk.
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Constants.pm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Bugzilla/Constants.pm b/Bugzilla/Constants.pm index 284506e15..7e22ed2f7 100644 --- a/Bugzilla/Constants.pm +++ b/Bugzilla/Constants.pm @@ -61,6 +61,8 @@ use base qw(Exporter); GROUP_MEMBERSHIP GROUP_BLESS GROUP_VISIBLE + + DEFAULT_COLUMN_LIST ); @Bugzilla::Constants::EXPORT_OK = qw(contenttypes); @@ -199,4 +201,10 @@ use constant GROUP_MEMBERSHIP => 0; use constant GROUP_BLESS => 1; use constant GROUP_VISIBLE => 2; +# The default list of columns for buglist.cgi +use constant DEFAULT_COLUMN_LIST => ( + "bug_severity", "priority", "rep_platform","assigned_to", + "bug_status", "resolution", "short_short_desc" +); + 1; |