diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-10-03 17:20:04 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-10-03 17:20:04 +0000 |
commit | 20b4e226fe06db9132eccafd9f3c2c008ec99c09 (patch) | |
tree | be316ade1b637fe971324dae50152c61ef5fd507 /app/controllers/timelog_controller.rb | |
parent | c3e3a1891b721ae98d937cb060f109df8dc54346 (diff) | |
download | redmine-20b4e226fe06db9132eccafd9f3c2c008ec99c09.tar.gz redmine-20b4e226fe06db9132eccafd9f3c2c008ec99c09.zip |
Performance improvement on calendar and gantt (about 45% on gantt for large number of issues).
Partial issues/_tooltip is replaced by an helper and some translated strings are now cached.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@794 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, 1 insertions, 0 deletions
diff --git a/app/controllers/timelog_controller.rb b/app/controllers/timelog_controller.rb index 1c15fa564..68c0edefa 100644 --- a/app/controllers/timelog_controller.rb +++ b/app/controllers/timelog_controller.rb @@ -21,6 +21,7 @@ class TimelogController < ApplicationController helper :sort include SortHelper + helper :issues def report @available_criterias = { 'version' => {:sql => "#{Issue.table_name}.fixed_version_id", |