diff options
author | Kohei Yoshino <kohei.yoshino@gmail.com> | 2018-03-05 01:00:54 +0100 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2018-03-05 01:00:54 +0100 |
commit | cfb84c6899369ceeac12511e39693c5ed12f3b21 (patch) | |
tree | 49912890a383129f00e4d3c29e811917b16b8670 /request.cgi | |
parent | 2d9deb00d18b646392e660dac42805ec66d3f226 (diff) | |
download | bugzilla-cfb84c6899369ceeac12511e39693c5ed12f3b21.tar.gz bugzilla-cfb84c6899369ceeac12511e39693c5ed12f3b21.tar.xz |
Bug 1429344 - Review requests in requests dropdown should link to MozReview or GitHub instead of Bugzilla details page
Diffstat (limited to 'request.cgi')
-rwxr-xr-x | request.cgi | 12 |
1 files changed, 7 insertions, 5 deletions
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); } |