From cfb84c6899369ceeac12511e39693c5ed12f3b21 Mon Sep 17 00:00:00 2001 From: Kohei Yoshino Date: Sun, 4 Mar 2018 19:00:54 -0500 Subject: Bug 1429344 - Review requests in requests dropdown should link to MozReview or GitHub instead of Bugzilla details page --- request.cgi | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'request.cgi') diff --git a/request.cgi b/request.cgi index 0d1dd138b..9f5d249cc 100755 --- a/request.cgi +++ b/request.cgi @@ -102,6 +102,7 @@ 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.mimetype, attachments.ispatch, bugs.bug_status, bugs.priority, @@ -248,7 +249,7 @@ sub queue { requesters.login_name, requestees.realname, requestees.login_name, flags.modification_date, attachments.ispatch cclist_accessible, bugs.reporter, bugs.reporter_accessible, - bugs.assigned_to, attachments.ispatch'); + bugs.assigned_to, attachments.mimetype'); # Group the records, in other words order them by the group column # so the loop in the display template can break them up into separate @@ -291,10 +292,11 @@ sub queue { 'requestee' => ($data->[11] ? "$data->[11] <$data->[12]>" : $data->[12]) , 'restricted' => $data->[13] ? 1 : 0, 'created' => $data->[14], - 'ispatch' => $data->[15], - 'bug_status' => $data->[16], - 'priority' => $data->[17], - 'bug_severity' => $data->[18], + 'attach_mimetype' => $data->[15], + 'attach_ispatch' => $data->[16], + 'bug_status' => $data->[17], + 'priority' => $data->[18], + 'bug_severity' => $data->[19], }; push(@requests, $request); } -- cgit v1.2.3-24-g4f1b