summaryrefslogtreecommitdiffstats
path: root/app/views/issues/_history.rhtml
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2006-12-17 08:10:18 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2006-12-17 08:10:18 +0000
commit2b86ef8e28d0e5376197391c29a8fb302f14820f (patch)
treee5a80fb24158b350507c28021418a19aa7084991 /app/views/issues/_history.rhtml
parent3e28dc669b014db811c0de673a090adf54f42bc1 (diff)
downloadredmine-2b86ef8e28d0e5376197391c29a8fb302f14820f.tar.gz
redmine-2b86ef8e28d0e5376197391c29a8fb302f14820f.zip
various modifications to prevent xss
- validation of names and labels against /^[\w\s\'\-]*$/i - html entities encoding git-svn-id: http://redmine.rubyforge.org/svn/trunk@99 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/issues/_history.rhtml')
-rw-r--r--app/views/issues/_history.rhtml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/issues/_history.rhtml b/app/views/issues/_history.rhtml
index 6dc2a84be..da58b7d6c 100644
--- a/app/views/issues/_history.rhtml
+++ b/app/views/issues/_history.rhtml
@@ -6,6 +6,6 @@
<% end %>
</ul>
<% if journal.notes? %>
- <%= simple_format auto_link journal.notes %>
+ <%= simple_format auto_link h(journal.notes) %>
<% end %>
<% end %>