diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-06-09 10:32:34 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-06-09 10:32:34 +0000 |
commit | 898a4164a052e1f5d4eaf74398850c168ecd4c96 (patch) | |
tree | 5f1e09879c814ae0de94b98c910506cc14ee3e6d /app/views/activities/index.html.erb | |
parent | d21bacb01de0f4ebbac72dfb98c541d7ba9401ac (diff) | |
download | redmine-898a4164a052e1f5d4eaf74398850c168ecd4c96.tar.gz redmine-898a4164a052e1f5d4eaf74398850c168ecd4c96.zip |
Fixed that link to user is escaped in activity title (#11124).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9786 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/activities/index.html.erb')
-rw-r--r-- | app/views/activities/index.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/activities/index.html.erb b/app/views/activities/index.html.erb index e2f15d109..260e9d2f9 100644 --- a/app/views/activities/index.html.erb +++ b/app/views/activities/index.html.erb @@ -1,4 +1,4 @@ -<h2><%= @author.nil? ? l(:label_activity) : l(:label_user_activity, link_to_user(@author)) %></h2> +<h2><%= @author.nil? ? l(:label_activity) : l(:label_user_activity, link_to_user(@author)).html_safe %></h2> <p class="subtitle"><%= l(:label_date_from_to, :start => format_date(@date_to - @days), :end => format_date(@date_to-1)) %></p> <div id="activity"> |