From d4bcf5272dffa704cfe97774088e9ecbafa03b47 Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Tue, 21 Nov 2006 02:24:55 +0000 Subject: Bug 353656: User Interface gets corrupted by multiple localized users resolving bugs as duplicates - Patch by Frédéric Buclin r=bkor a=justdave MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Bugzilla/Constants.pm | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'Bugzilla/Constants.pm') diff --git a/Bugzilla/Constants.pm b/Bugzilla/Constants.pm index 5186fcbce..89032c0b0 100644 --- a/Bugzilla/Constants.pm +++ b/Bugzilla/Constants.pm @@ -81,6 +81,12 @@ use File::Basename; COMMENT_COLS + CMT_NORMAL + CMT_DUPE_OF + CMT_HAS_DUPE + CMT_POPULAR_VOTES + CMT_MOVED_TO + UNLOCK_ABORT THROW_ERROR @@ -231,6 +237,13 @@ use constant LIST_OF_BUGS => 1; # The column length for displayed (and wrapped) bug comments. use constant COMMENT_COLS => 80; +# The type of bug comments. +use constant CMT_NORMAL => 0; +use constant CMT_DUPE_OF => 1; +use constant CMT_HAS_DUPE => 2; +use constant CMT_POPULAR_VOTES => 3; +use constant CMT_MOVED_TO => 4; + # used by Bugzilla::DB to indicate that tables are being unlocked # because of error use constant UNLOCK_ABORT => 1; -- cgit v1.2.3-24-g4f1b