Closed
Bug 705714
Opened 14 years ago
Closed 14 years ago
Allow Version/Milestone pulldown menu for query across multiple product in "Change Several Bugs at Once"
Categories
(Bugzilla :: Bugzilla-General, enhancement)
Tracking
()
People
(Reporter: a.zhao, Unassigned)
Details
User Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:8.0) Gecko/20100101 Firefox/8.0
Build ID: 20111104165243
Steps to reproduce:
1) If I do a query with multiple products
2) click "Change Several Bugs at Once"
Actual results:
the version and milestone are both disabled.
The behavior is intended from my reading of buglist.cgi:
# If all bugs being changed are in the same product, the user can change
# their version and component, so generate a list of products, a list of
# versions for the product (if there is only one product on the list of
# products), and a list of components for the product.
if ($one_product) {
$vars->{'versions'} = [map($_->name ,@{ $one_product->versions })];
$vars->{'components'} = [map($_->name, @{ $one_product->components })];
if (Bugzilla->params->{'usetargetmilestone'}) {
$vars->{'targetmilestones'} = [map($_->name,
@{ $one_product->milestones })];
}
}
Expected results:
The version/milestone should be merged and presented.
Updated•14 years ago
|
Severity: normal → enhancement
Updated•14 years ago
|
Status: UNCONFIRMED → RESOLVED
Closed: 14 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•