summaryrefslogtreecommitdiffstats
path: root/app/models/issue_custom_field.rb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2013-07-24 18:18:08 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2013-07-24 18:18:08 +0000
commitdc5e5eca6b7cb124da1e47036f8a688bb4a7688c (patch)
treecb32b83d39d2b7897eb2f28c3fc94b4bb611d930 /app/models/issue_custom_field.rb
parent4069f95fd1bc98ab2b500f5f23d882d00d11bc11 (diff)
downloadredmine-dc5e5eca6b7cb124da1e47036f8a688bb4a7688c.tar.gz
redmine-dc5e5eca6b7cb124da1e47036f8a688bb4a7688c.zip
Fixed that displaying time entries with custom field column raises an error (#5037).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@12041 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/models/issue_custom_field.rb')
-rw-r--r--app/models/issue_custom_field.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/issue_custom_field.rb b/app/models/issue_custom_field.rb
index 9ddedc882..e811ccaae 100644
--- a/app/models/issue_custom_field.rb
+++ b/app/models/issue_custom_field.rb
@@ -25,7 +25,7 @@ class IssueCustomField < CustomField
end
def visible_by?(project, user=User.current)
- visible? || user.admin? || (roles & user.roles_for_project(project)).present?
+ super || (roles & user.roles_for_project(project)).present?
end
def validate_custom_field