mirror of
https://github.com/redmine/redmine.git
synced 2026-01-28 18:29:58 +01:00
FIX: The position of existing elements in the array CORE_FIELDS must not be changed (#38416).
git-svn-id: https://svn.redmine.org/redmine/trunk@22186 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -24,8 +24,8 @@ class Tracker < ActiveRecord::Base
|
||||
# Fields that can be disabled
|
||||
# Other (future) fields should be appended, not inserted!
|
||||
CORE_FIELDS =
|
||||
%w(priority_id assigned_to_id category_id fixed_version_id parent_issue_id
|
||||
start_date due_date estimated_hours done_ratio description).freeze
|
||||
%w(assigned_to_id category_id fixed_version_id parent_issue_id
|
||||
start_date due_date estimated_hours done_ratio description priority_id).freeze
|
||||
CORE_FIELDS_ALL = (CORE_FIELDS_UNDISABLABLE + CORE_FIELDS).freeze
|
||||
|
||||
before_destroy :check_integrity
|
||||
|
||||
Reference in New Issue
Block a user