summaryrefslogtreecommitdiffstats
path: root/app/views/welcome
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2008-07-02 17:27:16 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2008-07-02 17:27:16 +0000
commit9703f576d96c113f9c73a87f85ad7da3241525b2 (patch)
tree76da99c256b3b788106acc55afc18a366e57f7bd /app/views/welcome
parentbe57c20cd8392e8454f2e68d3ab2ce9d044c12e9 (diff)
downloadredmine-9703f576d96c113f9c73a87f85ad7da3241525b2.tar.gz
redmine-9703f576d96c113f9c73a87f85ad7da3241525b2.zip
Escapes HTML tags.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1612 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/welcome')
-rw-r--r--app/views/welcome/index.rhtml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/welcome/index.rhtml b/app/views/welcome/index.rhtml
index 8c25897bd..855248c5e 100644
--- a/app/views/welcome/index.rhtml
+++ b/app/views/welcome/index.rhtml
@@ -18,7 +18,7 @@
<ul>
<% for project in @projects %>
<li>
- <%= link_to project.name, :controller => 'projects', :action => 'show', :id => project %> (<%= format_time(project.created_on) %>)
+ <%= link_to h(project.name), :controller => 'projects', :action => 'show', :id => project %> (<%= format_time(project.created_on) %>)
<%= textilizable project.short_description, :project => project %>
</li>
<% end %>