View Issue Details

IDProjectCategoryView StatusLast Update
0006078mantisbtbugtrackerpublic2005-09-11 08:12
Reportermmchenry Assigned Tothraxisp  
PrioritynormalSeverityminorReproducibilityalways
Status closedResolutionfixed 
Product Version1.0.0rc1 
Fixed in Version1.0.0rc2 
Summary0006078: Assigning bugs via group action not working properly
Description

When assigning bugs via group action, only managers are displayed in the "Assign issues to" pick list.

Note that on the update bug page, the "Assign To" pick list correctly includes all users with developer level access.

Additional Information

It looks like 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);

TagsNo tags attached.

Activities

thraxisp

thraxisp

2005-08-04 13:00

reporter   ~0011072

You are correct, the users listed should have 'handle_bug_threshold' access (the default).

bug_actiongroup_page.php -> 1.52