summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/Constants.pm8
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;