diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-08-02 13:14:38 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-08-02 13:14:38 +0000 |
commit | b921cb3cb4412ba0f3e7ef50b10c776badffab2e (patch) | |
tree | 8e4750cc2e8068e2251d396887c1c31f0732cfa9 /app/views/timelog | |
parent | 05eeb7cc6ffd7b378c40c059ff76e339005d61f2 (diff) | |
download | redmine-b921cb3cb4412ba0f3e7ef50b10c776badffab2e.tar.gz redmine-b921cb3cb4412ba0f3e7ef50b10c776badffab2e.zip |
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
Diffstat (limited to 'app/views/timelog')
-rw-r--r-- | app/views/timelog/_list.rhtml | 4 |
1 files 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 @@ <tr class="time-entry <%= cycle("odd", "even") %> hascontextmenu"> <td class="checkbox hide-when-print"><%= check_box_tag("ids[]", entry.id, false, :id => nil) %></td> <td class="spent_on"><%= format_date(entry.spent_on) %></td> -<td class="user"><%=h entry.user %></td> +<td class="user"><%= link_to_user(entry.user) %></td> <td class="activity"><%=h entry.activity %></td> -<td class="project"><%=h entry.project %></td> +<td class="project"><%= link_to_project(entry.project) %></td> <td class="subject"> <% if entry.issue -%> <%= entry.issue.visible? ? link_to_issue(entry.issue, :truncate => 50) : "##{entry.issue.id}" -%> |