summaryrefslogtreecommitdiffstats
path: root/app/views/projects/settings/_versions.rhtml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/projects/settings/_versions.rhtml')
-rw-r--r--app/views/projects/settings/_versions.rhtml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/settings/_versions.rhtml b/app/views/projects/settings/_versions.rhtml
index 63c408b0d..7329c7f3b 100644
--- a/app/views/projects/settings/_versions.rhtml
+++ b/app/views/projects/settings/_versions.rhtml
@@ -11,7 +11,7 @@
<tbody>
<% for version in @project.versions.sort %>
<tr class="<%= cycle 'odd', 'even' %>">
- <td><%=h version.name %></td>
+ <td><%= link_to h(version.name), :controller => 'versions', :action => 'show', :id => version %></td>
<td align="center"><%= format_date(version.effective_date) %></td>
<td><%=h version.description %></td>
<td><%= link_to(version.wiki_page_title, :controller => 'wiki', :page => Wiki.titleize(version.wiki_page_title)) unless version.wiki_page_title.blank? || @project.wiki.nil? %></td>