diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-10-22 20:40:11 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-10-22 20:40:11 +0000 |
commit | d8ef4b6f4d815500671dc21d40596219df3baa8d (patch) | |
tree | 98508f8a28922be65f93af7de79f8a2c78e47344 /app/models/time_entry.rb | |
parent | d0bbe830ad5b14844bdc2c7a85ec9fb6696247fd (diff) | |
download | redmine-d8ef4b6f4d815500671dc21d40596219df3baa8d.tar.gz redmine-d8ef4b6f4d815500671dc21d40596219df3baa8d.zip |
Fixed: timelog link in the activity broken by recent refactoring (#6702).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4277 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/models/time_entry.rb')
-rw-r--r-- | app/models/time_entry.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/time_entry.rb b/app/models/time_entry.rb index 9bf970891..b832277da 100644 --- a/app/models/time_entry.rb +++ b/app/models/time_entry.rb @@ -27,7 +27,7 @@ class TimeEntry < ActiveRecord::Base acts_as_customizable acts_as_event :title => Proc.new {|o| "#{l_hours(o.hours)} (#{(o.issue || o.project).event_title})"}, - :url => Proc.new {|o| {:controller => 'timelog', :action => 'details', :project_id => o.project, :issue_id => o.issue}}, + :url => Proc.new {|o| {:controller => 'timelog', :action => 'index', :project_id => o.project, :issue_id => o.issue}}, :author => :user, :description => :comments |