Actions
Maintenance #1956
closedxmera Omnia - Collection #1826: Maintenance tasks of several components
Maintenance #1739: Support Redmine 5.1.1
Check if custom_field changes will have impact on plugins
Start date:
Due date:
% Done:
100%
Estimated time:
Compatible Redmine Version:
Pull Request Link:
Description
Affected plugins:
- Redmine Matrix Field
- Redmine Project Types
- Redmine Colored Enumeration
- Redmine Computable Custom Field
diff --git a/app/models/custom_field.rb b/app/models/custom_field.rb
index 24300c6d2..be9cf550f 100644
--- a/app/models/custom_field.rb
+++ b/app/models/custom_field.rb
@@ -263,6 +263,8 @@ class CustomField < ActiveRecord::Base
end
def <=>(field)
+ return nil unless field.is_a?(CustomField)
+
position <=> field.position
end
Updated by liaham about 1 year ago
- Status changed from New to Closed
- Assignee set to liaham
- % Done changed from 0 to 100
Actions