Rails3: helper: use html_safe for filesysytem scm setting

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7551 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-09-30 08:16:46 +00:00
parent 9afd7b7df6
commit 19ac57e71a
1 changed files with 1 additions and 1 deletions

View File

@ -280,6 +280,6 @@ module RepositoriesHelper
:path_encoding, [nil] + Setting::ENCODINGS,
:label => l(:field_scm_path_encoding)
) +
'<br />' + l(:text_scm_path_encoding_note))
'<br />'.html_safe + l(:text_scm_path_encoding_note))
end
end