Skip to content

Commit

Permalink
[issue tracker] Populate reporter dropdown (#8469)
Browse files Browse the repository at this point in the history
In the issue tracker module, the reporter dropdown is populated with the assignee users instead of the reporter users.

This fills the reporter dropdown with the right reporter values.

Fixes #8429
  • Loading branch information
regisoc committed Apr 26, 2023
1 parent 0ef18d1 commit 522440d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/issue_tracker/php/issue_tracker.class.inc
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ class Issue_Tracker extends \NDB_Menu_Filter_Form
u.Real_name
FROM issues i
INNER JOIN users u
ON(i.assignee=u.UserID)",
ON(i.reporter=u.UserID)",
[]
);
foreach ($reporter_expanded as $r_row) {
Expand Down

0 comments on commit 522440d

Please # to comment.