Patch #2560 » custom_filed_in_bulk_edit_for_r3034.diff
app/controllers/issues_controller.rb (working copy) | ||
---|---|---|
281 | 281 |
# Find potential statuses the user could be allowed to switch issues to |
282 | 282 |
@available_statuses = Workflow.find(:all, :include => :new_status, |
283 | 283 |
:conditions => {:role_id => User.current.roles_for_project(@project).collect(&:id)}).collect(&:new_status).compact.uniq.sort |
284 |
@custom_fields = @project.issue_custom_fields.select {|f| f.field_format == 'list'} |
|
284 |
@custom_fields = @project.all_issue_custom_fields.select {|f| f.field_format == 'list'}
|
|
285 | 285 |
end |
286 | 286 | |
287 | 287 |
def move |
- « Previous
- 1
- 2
- 3
- 4
- Next »