summaryrefslogtreecommitdiffstats
path: root/app/views
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2012-02-25 11:06:14 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2012-02-25 11:06:14 +0000
commitb795bd5acee960cccfbb6783b271e82ae1172e29 (patch)
tree901d0cdbf1fb5f370c2a13b06d5b458d9059d580 /app/views
parent61b14f6391afa5848353f4ff5ace5f52443ecff7 (diff)
downloadredmine-b795bd5acee960cccfbb6783b271e82ae1172e29.tar.gz
redmine-b795bd5acee960cccfbb6783b271e82ae1172e29.zip
Fixed escaping issue with Rails 3.1.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8994 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-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 5c32da515..71a756ea7 100644
--- a/app/views/versions/index.html.erb
+++ b/app/views/versions/index.html.erb
@@ -57,7 +57,7 @@
'Element.toggleClassName("toggle-completed-versions", "collapsed"); Element.toggle("completed-versions")',
:id => 'toggle-completed-versions', :class => 'collapsible collapsed' %><br />
<span id="completed-versions" style="display:none;">
- <%= @completed_versions.map {|version| link_to format_version_name(version), version_path(version)}.join("<br />\n".html_safe) %>
+ <%= @completed_versions.map {|version| link_to format_version_name(version), version_path(version)}.join("<br />\n").html_safe %>
</span>
</p>
<% end %>