Label should be escaped.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10111 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2012-07-29 10:15:20 +00:00
parent c6106543e1
commit 33d6f9e7a1
1 changed files with 1 additions and 1 deletions

View File

@ -305,7 +305,7 @@ module ApplicationHelper
def principals_options_for_select(collection, selected=nil) def principals_options_for_select(collection, selected=nil)
s = '' s = ''
if collection.include?(User.current) if collection.include?(User.current)
s << content_tag('option', "<< #{l(:label_me)} >>".html_safe, :value => User.current.id) s << content_tag('option', "<< #{l(:label_me)} >>", :value => User.current.id)
end end
groups = '' groups = ''
collection.sort.each do |element| collection.sort.each do |element|