Skip to content

Commit 100dc97

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 89ad3b2 commit 100dc97

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
@@ -299,7 +299,8 @@
299299
break;
300300
case 'UP_TARGET_VERSION':
301301
case 'UP_FIXED_IN_VERSION':
302-
print_version_option_list( '', $t_project_id, VERSION_ALL );
302+
print_version_option_list( '', $t_project_id, VERSION_ALL,
303+
/* allow blank version */ true, /* include subprojects */ true );
303304
break;
304305
}
305306

0 commit comments

Comments
 (0)
Please sign in to comment.