]> source.dussan.org Git - redmine.git/commitdiff
Fixed version field on issue view page now links to the corresponding version in...
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Tue, 12 Jun 2007 23:07:00 +0000 (23:07 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Tue, 12 Jun 2007 23:07:00 +0000 (23:07 +0000)
git-svn-id: http://redmine.rubyforge.org/svn/trunk@562 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/controllers/issues_controller.rb
app/views/issues/show.rhtml

index f57dfc8889a74d01971b31bf79c36f694c60ead5..e0005b3096390f18a1a3a3706ede095dbf033e44 100644 (file)
@@ -21,6 +21,8 @@ class IssuesController < ApplicationController
   
   cache_sweeper :issue_sweeper, :only => [ :edit, :change_status, :destroy ]
 
+  helper :projects
+  include ProjectsHelper   
   helper :custom_fields
   include CustomFieldsHelper
   helper :ifpdf
index 2c4905e9da88d9c13547a3077a89e03ba7b3c8d3..0bbc20c4d85c1ec15722e7290b9313c3a54c2e0e 100644 (file)
@@ -27,7 +27,7 @@
     <td><b><%=l(:field_done_ratio)%> :</b></td><td><%= @issue.done_ratio %> %</td>
 </tr>
 <tr>
-    <td><b><%=l(:field_fixed_version)%> :</b></td><td><%= @issue.fixed_version ? @issue.fixed_version.name : "-" %></td>
+    <td><b><%=l(:field_fixed_version)%> :</b></td><td><%= @issue.fixed_version ? link_to_version(@issue.fixed_version) : "-" %></td>
     <td><b><%=l(:label_spent_time)%> :</b></td>
     <td><%= @issue.spent_hours > 0 ? (link_to lwr(:label_f_hour, @issue.spent_hours), {:controller => 'timelog', :action => 'details', :issue_id => @issue}, :class => 'icon icon-time') : "-" %></td>
 </tr>