diff options
author | Go MAEDA <maeda@farend.jp> | 2020-01-12 07:04:16 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2020-01-12 07:04:16 +0000 |
commit | 6032751ad96f3a9d16fbf2d62b9844a5e45ee82a (patch) | |
tree | f4ece0f611baf3bf93da1c87dd0e5cd39687529d /app/models | |
parent | bd0909310afa3825de1414af51ffda54967acb49 (diff) | |
download | redmine-6032751ad96f3a9d16fbf2d62b9844a5e45ee82a.tar.gz redmine-6032751ad96f3a9d16fbf2d62b9844a5e45ee82a.zip |
Merged r19421 from trunk to 4.1-stable (#32769).
Patch by Marius BALTEANU.
git-svn-id: http://svn.redmine.org/redmine/branches/4.1-stable@19422 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/project_query.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/project_query.rb b/app/models/project_query.rb index 5957ecb41..55c785e89 100644 --- a/app/models/project_query.rb +++ b/app/models/project_query.rb @@ -71,7 +71,7 @@ class ProjectQuery < Query return @available_columns if @available_columns @available_columns = self.class.available_columns.dup @available_columns += ProjectCustomField.visible. - map {|cf| QueryAssociationCustomFieldColumn.new(:project, cf) } + map {|cf| QueryCustomFieldColumn.new(cf) } @available_columns end |