summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Bug.pm
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2006-01-11 08:30:33 +0100
committerlpsolit%gmail.com <>2006-01-11 08:30:33 +0100
commitd2a0eafd3082e560c1a635c9e59ec0ebfed18a7e (patch)
tree0dc47a0afaddcb76a5a7fef1eb4c75f018231819 /Bugzilla/Bug.pm
parent7d01e4bc12896e1b7f035f708402fc30baa25e03 (diff)
downloadbugzilla-d2a0eafd3082e560c1a635c9e59ec0ebfed18a7e.tar.gz
bugzilla-d2a0eafd3082e560c1a635c9e59ec0ebfed18a7e.tar.xz
Bug 316096: 'everconfirmed' is not included in the DTD and XML files - Patch by Greg Hendricks <ghendricks@novell.com> r=LpSolit a=myk
Diffstat (limited to 'Bugzilla/Bug.pm')
-rwxr-xr-xBugzilla/Bug.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm
index 61798f7cb..cab54d7da 100755
--- a/Bugzilla/Bug.pm
+++ b/Bugzilla/Bug.pm
@@ -78,7 +78,7 @@ sub fields {
bug_status resolution
bug_file_loc status_whiteboard keywords
priority bug_severity target_milestone
- dependson blocked votes
+ dependson blocked votes everconfirmed
reporter assigned_to cc
);
@@ -172,7 +172,7 @@ sub initBug {
bug_file_loc, short_desc, target_milestone,
qa_contact AS qa_contact_id, status_whiteboard, " .
$dbh->sql_date_format('creation_ts', '%Y.%m.%d %H:%i') . ",
- delta_ts, COALESCE(SUM(votes.vote_count), 0),
+ delta_ts, COALESCE(SUM(votes.vote_count), 0), everconfirmed,
reporter_accessible, cclist_accessible,
estimated_time, remaining_time, " .
$dbh->sql_date_format('deadline', '%Y-%m-%d') . "
@@ -191,7 +191,7 @@ sub initBug {
rep_platform, op_sys, bug_status, resolution, priority,
bug_severity, bugs.component_id, components.name, assigned_to,
reporter, bug_file_loc, short_desc, target_milestone,
- qa_contact, status_whiteboard, creation_ts,
+ qa_contact, status_whiteboard, everconfirmed, creation_ts,
delta_ts, reporter_accessible, cclist_accessible,
estimated_time, remaining_time, deadline');
@@ -210,7 +210,7 @@ sub initBug {
"assigned_to_id", "reporter_id",
"bug_file_loc", "short_desc",
"target_milestone", "qa_contact_id", "status_whiteboard",
- "creation_ts", "delta_ts", "votes",
+ "creation_ts", "delta_ts", "votes", "everconfirmed",
"reporter_accessible", "cclist_accessible",
"estimated_time", "remaining_time", "deadline")
{