Single assign works, but multiple assign don't

Get help from other users here.

Moderators: Developer, Contributor

Post Reply
vasilisk

Single assign works, but multiple assign don't

Post by vasilisk »

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!
thraxisp
Developer
Posts: 509
Joined: 14 Feb 2005, 03:38
Location: Ottawa, Canada
Contact:

Post by thraxisp »

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.
mmchenry
Posts: 8
Joined: 17 Feb 2005, 12:01

Post by mmchenry »

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.
Post Reply