summaryrefslogtreecommitdiffstats
path: root/request.cgi
diff options
context:
space:
mode:
authorDave Lawrence <dlawrence@mozilla.com>2012-01-12 00:05:46 +0100
committerDave Lawrence <dlawrence@mozilla.com>2012-01-12 00:05:46 +0100
commitd67ed6078ec039fad57b6e87f4a08f5361b47666 (patch)
tree8b6082cb4663da6d88089096219d7565d2cea4e8 /request.cgi
parent57fa5bafd2a1d68594745c7ea2c854798ad99857 (diff)
downloadbugzilla-d67ed6078ec039fad57b6e87f4a08f5361b47666.tar.gz
bugzilla-d67ed6078ec039fad57b6e87f4a08f5361b47666.tar.xz
Bug 712052 - Investigate if patches could have priority flags
r=glob
Diffstat (limited to 'request.cgi')
-rwxr-xr-xrequest.cgi8
1 files changed, 7 insertions, 1 deletions
diff --git a/request.cgi b/request.cgi
index cac8ecc78..c7e1fe3f7 100755
--- a/request.cgi
+++ b/request.cgi
@@ -115,7 +115,10 @@ sub queue {
requesters.realname, requesters.login_name,
requestees.realname, requestees.login_name, COUNT(privs.group_id),
" . $dbh->sql_date_format('flags.modification_date', '%Y.%m.%d %H:%i') . ",
- attachments.ispatch " .
+ attachments.ispatch,
+ bugs.bug_status,
+ bugs.priority,
+ bugs.bug_severity " .
# Use the flags and flagtypes tables for information about the flags,
# the bugs and attachments tables for target info, the profiles tables
# for setter and requestee info, the products/components tables
@@ -298,6 +301,9 @@ sub queue {
'restricted' => $data[13] ? 1 : 0,
'created' => $data[14],
'ispatch' => $data[15],
+ 'bug_status' => $data[16],
+ 'priority' => $data[17],
+ 'bug_severity' => $data[18],
};
push(@requests, $request);
}