diff options
author | Eric Davis <edavis@littlestreamsoftware.com> | 2010-10-06 18:23:45 +0000 |
---|---|---|
committer | Eric Davis <edavis@littlestreamsoftware.com> | 2010-10-06 18:23:45 +0000 |
commit | 2ecca7e4df96cba3fe5ab75997ca179cd62968f8 (patch) | |
tree | 460a880a724dad450f262b175fb54fb89ff5e573 /app/views/issues/show.rhtml | |
parent | c43ef6e7696e1f9684099a7a19d3b71b42ac5a06 (diff) | |
download | redmine-2ecca7e4df96cba3fe5ab75997ca179cd62968f8.tar.gz redmine-2ecca7e4df96cba3fe5ab75997ca179cd62968f8.zip |
Refactor: rename TimelogController#details to #index
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4235 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/issues/show.rhtml')
-rw-r--r-- | app/views/issues/show.rhtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/issues/show.rhtml b/app/views/issues/show.rhtml index b3493cf7c..d1d93da9a 100644 --- a/app/views/issues/show.rhtml +++ b/app/views/issues/show.rhtml @@ -32,7 +32,7 @@ <th class="category"><%=l(:field_category)%>:</th><td class="category"><%=h @issue.category ? @issue.category.name : "-" %></td> <% if User.current.allowed_to?(:view_time_entries, @project) %> <th class="spent-time"><%=l(:label_spent_time)%>:</th> - <td class="spent-time"><%= @issue.spent_hours > 0 ? (link_to l_hours(@issue.spent_hours), {:controller => 'timelog', :action => 'details', :project_id => @project, :issue_id => @issue}) : "-" %></td> + <td class="spent-time"><%= @issue.spent_hours > 0 ? (link_to l_hours(@issue.spent_hours), {:controller => 'timelog', :action => 'index', :project_id => @project, :issue_id => @issue}) : "-" %></td> <% end %> </tr> <tr> |