Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 0923fc3

Browse files
committedDec 11, 2011
Bug actiongroup version list includes subprojects
When building the list of versions for bug group actions update fixed in / target version, use print_version_option_list() with the flag to retrieve versions from sub-projects. Prior to this, whenever the group action affected bugs from more than one project, the versions list would always be built for ALL_PROJECTS (i.e. an empty list since there is no concept of global versions) Fixes #13662
1 parent 1c7180f commit 0923fc3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎bug_actiongroup_page.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,8 @@
266266
break;
267267
case 'UP_TARGET_VERSION':
268268
case 'UP_FIXED_IN_VERSION':
269-
print_version_option_list( '', $t_project_id, VERSION_ALL );
269+
print_version_option_list( '', $t_project_id, VERSION_ALL,
270+
/* allow blank version */ true, /* include subprojects */ true );
270271
break;
271272
}
272273

0 commit comments

Comments
 (0)
Please sign in to comment.