diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-08-01 20:04:31 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-08-01 20:04:31 +0000 |
commit | 7701de9ae4fd85ef7ddc0e3a26e2234793d7e902 (patch) | |
tree | fa538fbdcf78da012f843df404cde7bd5ab296d0 /app/views/timelog | |
parent | 46745614b495c5344489cef07a7690e1b8e1a171 (diff) | |
download | redmine-7701de9ae4fd85ef7ddc0e3a26e2234793d7e902.tar.gz redmine-7701de9ae4fd85ef7ddc0e3a26e2234793d7e902.zip |
Fixed: on spent time details view, the h3 issue link now links back to the issue
git-svn-id: http://redmine.rubyforge.org/svn/trunk@599 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/timelog')
-rw-r--r-- | app/views/timelog/details.rhtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/timelog/details.rhtml b/app/views/timelog/details.rhtml index a55573473..5683a2f3f 100644 --- a/app/views/timelog/details.rhtml +++ b/app/views/timelog/details.rhtml @@ -5,7 +5,7 @@ <h2><%= l(:label_spent_time) %></h2>
<h3><%= link_to(@project.name, {:action => 'details', :project_id => @project}) if @project %>
-<%= "/ " + link_to("#{@issue.tracker.name} ##{@issue.id}", {:action => 'details', :issue_id => @issue }) + ": #{h(@issue.subject)}" if @issue %></h3>
+<%= "/ " + link_to_issue(@issue) + h(": #{@issue.subject}") if @issue %></h3>
<h3 class="textright"><%= l(:label_total) %>: <%= lwr(:label_f_hour, @total_hours) %></h3>
|