Commit 13642dbe authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 288557: Show in the request queue those requests tied to secure bugs for…

Bug 288557: Show in the request queue those requests tied to secure bugs for which the user is the QA contact - Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=myk
parent 909b5624
......@@ -107,9 +107,9 @@ sub queue {
ON flags.requestee_id = requestees.userid
INNER JOIN bugs
ON flags.bug_id = bugs.bug_id
LEFT JOIN products
INNER JOIN products
ON bugs.product_id = products.id
LEFT JOIN components
INNER JOIN components
ON bugs.component_id = components.id
LEFT JOIN bug_group_map AS bgmap
ON bgmap.bug_id = bugs.bug_id
......@@ -124,7 +124,9 @@ sub queue {
" WHERE ((bgmap.group_id IS NULL) OR
(ccmap.who IS NOT NULL AND cclist_accessible = 1) OR
(bugs.reporter = $userid AND bugs.reporter_accessible = 1) OR
(bugs.assigned_to = $userid))";
(bugs.assigned_to = $userid) " .
(Param('useqacontact') ? "OR
(bugs.qa_contact = $userid))" : ")");
# Non-deleted flags only
$query .= " AND flags.is_active = 1 ";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment