Actions
Maintenance #1954
closedxmera Omnia - Collection #1826: Maintenance tasks of several components
Maintenance #1739: Support Redmine 5.1.1
Check if projects helper changes will have impact on plugins
Start date:
Due date:
% Done:
100%
Estimated time:
Compatible Redmine Version:
Pull Request Link:
Description
Affected plugins:
diff --git a/app/helpers/projects_helper.rb b/app/helpers/projects_helper.rb
index b213e2f48..d4f7339a0 100644
--- a/app/helpers/projects_helper.rb
+++ b/app/helpers/projects_helper.rb
@@ -93,7 +93,7 @@ module ProjectsHelper
grouped[version.project.name] << [version.name, version.id]
end
- selected = selected.is_a?(Version) ? selected.id : selected
+ selected = selected.id if selected.is_a?(Version)
if grouped.keys.size > 1
grouped_options_for_select(grouped, selected)
else
@@ -167,7 +167,7 @@ module ProjectsHelper
end if include_in_api_response?('enabled_modules')
api.array :issue_custom_fields do
- project.issue_custom_fields.each do |custom_field|
+ project.all_issue_custom_fields.each do |custom_field|
api.custom_field(:id => custom_field.id, :name => custom_field.name)
end
end if include_in_api_response?('issue_custom_fields')
Updated by liaham about 1 year ago
- Status changed from New to Closed
- Assignee set to liaham
- % Done changed from 0 to 100
No impact on Redmine Issue Sync.
Actions