summaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2016-08-31 17:00:22 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2016-08-31 17:00:22 +0000
commit9d33ec22ccf09d6a82d6b8af841ab3f396029a5f (patch)
tree74326c93a0abac82951a52378b42b70f24faf046 /app
parent374468e88aab174a88de3f3c77c290f341c10d0e (diff)
downloadredmine-9d33ec22ccf09d6a82d6b8af841ab3f396029a5f.tar.gz
redmine-9d33ec22ccf09d6a82d6b8af841ab3f396029a5f.zip
Merged r15742 (#23334).
git-svn-id: http://svn.redmine.org/redmine/branches/3.3-stable@15774 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r--app/models/issue.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/models/issue.rb b/app/models/issue.rb
index 5b6ae3041..9fb275495 100644
--- a/app/models/issue.rb
+++ b/app/models/issue.rb
@@ -568,8 +568,9 @@ class Issue < ActiveRecord::Base
# Returns the custom_field_values that can be edited by the given user
def editable_custom_field_values(user=nil)
+ read_only = read_only_attribute_names(user)
visible_custom_field_values(user).reject do |value|
- read_only_attribute_names(user).include?(value.custom_field_id.to_s)
+ read_only.include?(value.custom_field_id.to_s)
end
end