diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-08-20 10:27:39 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-08-20 10:27:39 +0000 |
commit | 3539cfcf0f6e9f4379c5a15ae610608b370ee23c (patch) | |
tree | ebdef3f7b0fbcd6fadb20b75098e2d208b6f310d /app/controllers/timelog_controller.rb | |
parent | a78c7249029828685173ecd86151fb80546d3032 (diff) | |
download | redmine-3539cfcf0f6e9f4379c5a15ae610608b370ee23c.tar.gz redmine-3539cfcf0f6e9f4379c5a15ae610608b370ee23c.zip |
Adds issue tracker and status columns and filters on spent time list (#23401).
git-svn-id: http://svn.redmine.org/redmine/trunk@15738 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/controllers/timelog_controller.rb')
-rw-r--r-- | app/controllers/timelog_controller.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/app/controllers/timelog_controller.rb b/app/controllers/timelog_controller.rb index 2c72f49c6..93051fd66 100644 --- a/app/controllers/timelog_controller.rb +++ b/app/controllers/timelog_controller.rb @@ -45,7 +45,6 @@ class TimelogController < ApplicationController sort_init(@query.sort_criteria.empty? ? [['spent_on', 'desc']] : @query.sort_criteria) sort_update(@query.sortable_columns) scope = time_entry_scope(:order => sort_clause). - includes(:project, :user, :issue). preload(:issue => [:project, :tracker, :status, :assigned_to, :priority]) respond_to do |format| |