summaryrefslogtreecommitdiffstats
path: root/app/controllers
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2018-09-23 11:59:52 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2018-09-23 11:59:52 +0000
commitaac543dfba671a2848536cc22a9513ff1154fc46 (patch)
treee7fa9362215e5f43a99e86401d661d2868283f91 /app/controllers
parent5fbe5d74bc07e55130005ac2200d568f98fd5aa2 (diff)
downloadredmine-aac543dfba671a2848536cc22a9513ff1154fc46.tar.gz
redmine-aac543dfba671a2848536cc22a9513ff1154fc46.zip
Column Project is no longer added by default to the list of default columns for time entries (#26537).
Patch by Marius BALTEANU. git-svn-id: http://svn.redmine.org/redmine/trunk@17503 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/timelog_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/timelog_controller.rb b/app/controllers/timelog_controller.rb
index 50fcab2f7..47dc7c4f5 100644
--- a/app/controllers/timelog_controller.rb
+++ b/app/controllers/timelog_controller.rb
@@ -283,6 +283,6 @@ private
end
def retrieve_time_entry_query
- retrieve_query(TimeEntryQuery, false, :defaults => Setting.time_entry_list_defaults.symbolize_keys)
+ retrieve_query(TimeEntryQuery, false, :defaults => @default_columns_names)
end
end