summaryrefslogtreecommitdiffstats
path: root/app/views/versions/index.html.erb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2012-07-29 11:16:19 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2012-07-29 11:16:19 +0000
commit6918a8974c04253dc12c39ae2acbb796d2dd95d0 (patch)
tree65459f2cfdcf0a405bd47b160039d24b57bbc9da /app/views/versions/index.html.erb
parentba9f1c03885d3882404cbca54de785cb4b640c51 (diff)
downloadredmine-6918a8974c04253dc12c39ae2acbb796d2dd95d0.tar.gz
redmine-6918a8974c04253dc12c39ae2acbb796d2dd95d0.zip
Removed self closing a tags.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10115 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/versions/index.html.erb')
-rw-r--r--app/views/versions/index.html.erb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/versions/index.html.erb b/app/views/versions/index.html.erb
index a05320ac5..b79bdb045 100644
--- a/app/views/versions/index.html.erb
+++ b/app/views/versions/index.html.erb
@@ -9,7 +9,7 @@
<% else %>
<div id="roadmap">
<% @versions.each do |version| %>
- <h3 class="version"><%= tag 'a', :name => anchor(version.name) %><%= link_to_version version %></h3>
+ <h3 class="version"><%= link_to_version version, :name => anchor(version.name) %></h3>
<%= render :partial => 'versions/overview', :locals => {:version => version} %>
<%= render(:partial => "wiki/content", :locals => {:content => version.wiki_page.content}) if version.wiki_page %>