From d67ed6078ec039fad57b6e87f4a08f5361b47666 Mon Sep 17 00:00:00 2001 From: Dave Lawrence Date: Wed, 11 Jan 2012 18:05:46 -0500 Subject: Bug 712052 - Investigate if patches could have priority flags r=glob --- request.cgi | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'request.cgi') 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); } -- cgit v1.2.3-24-g4f1b