From b921cb3cb4412ba0f3e7ef50b10c776badffab2e Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Tue, 2 Aug 2011 13:14:38 +0000 Subject: [PATCH] HTML escape at app/views/timelog/_list.rhtml. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6385 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/views/timelog/_list.rhtml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/timelog/_list.rhtml b/app/views/timelog/_list.rhtml index defad1203..6d3180c85 100644 --- a/app/views/timelog/_list.rhtml +++ b/app/views/timelog/_list.rhtml @@ -24,9 +24,9 @@ hascontextmenu"> <%= check_box_tag("ids[]", entry.id, false, :id => nil) %> <%= format_date(entry.spent_on) %> -<%=h entry.user %> +<%= link_to_user(entry.user) %> <%=h entry.activity %> -<%=h entry.project %> +<%= link_to_project(entry.project) %> <% if entry.issue -%> <%= entry.issue.visible? ? link_to_issue(entry.issue, :truncate => 50) : "##{entry.issue.id}" -%>