I can assign developers to issue if I use update option for issue.
But I cannot assign developers to issue when I select multiple issues at
View Issues page and then click Assign action.
Developers are not in the combobox list of users at
bug_actiongroup_page.php !!!
What access options I have to specify for developers in order
to assign developers to multiple issues at bug_actiongroup_page.php page?
Thank you!
Single assign works, but multiple assign don't
Moderators: Developer, Contributor
If you select issues from multiple projects, only those with a global "DEVELOPER" access level are listed. If you select a specific project in view_all_bugs, the developers for those projects are listed. This is done to prevent issues being assigned to people who are not developers for a specific bug.
Actually, vasilisk is right. This is currently broken in RC1. The code in bug_actiongroup_page.php is creating a pick list of users who are allowed to assign bugs, not users who are allowed to handle bugs.
You can workaround the issue by changing line 214 in bug_actiongroup_page.php from:
print_assign_to_option_list( 0, $t_project_id, $t_assign_threshold);
to:
print_assign_to_option_list( 0, $t_project_id );
Note: added to mantisbt as issue #6078.
You can workaround the issue by changing line 214 in bug_actiongroup_page.php from:
print_assign_to_option_list( 0, $t_project_id, $t_assign_threshold);
to:
print_assign_to_option_list( 0, $t_project_id );
Note: added to mantisbt as issue #6078.