diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-08-02 13:17:32 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-08-02 13:17:32 +0000 |
commit | c74588bf92553757d38cd718d33199730a198724 (patch) | |
tree | 904d20ddda1809def28d8e8e02212d906280916b /app/views/wiki | |
parent | 15023cced25a0f8877941e3537f1c378bca9ab1e (diff) | |
download | redmine-c74588bf92553757d38cd718d33199730a198724.tar.gz redmine-c74588bf92553757d38cd718d33199730a198724.zip |
HTML escape at app/views/wiki/date_index.html.erb.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6389 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/wiki')
-rw-r--r-- | app/views/wiki/date_index.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/wiki/date_index.html.erb b/app/views/wiki/date_index.html.erb index a0327cf4c..e1d39baef 100644 --- a/app/views/wiki/date_index.html.erb +++ b/app/views/wiki/date_index.html.erb @@ -12,7 +12,7 @@ <h3><%= format_date(date) %></h3> <ul> <% @pages_by_date[date].each do |page| %> - <li><%= link_to page.pretty_title, :action => 'show', :id => page.title, :project_id => page.project %></li> + <li><%= link_to h(page.pretty_title), :action => 'show', :id => page.title, :project_id => page.project %></li> <% end %> </ul> <% end %> |