##// END OF EJS Templates
Rails3: helper: use html_safe for Mercurial setting...
Toshi MARUYAMA -
r7428:163588887f9e
parent child
Show More
@@ -213,12 +213,12 module RepositoriesHelper
213 213 :size => 60, :required => true,
214 214 :disabled => (repository && !repository.root_url.blank?)
215 215 ) +
216 '<br />' + l(:text_mercurial_repository_note)) +
216 '<br />'.html_safe + l(:text_mercurial_repository_note)) +
217 217 content_tag('p', form.select(
218 218 :path_encoding, [nil] + Setting::ENCODINGS,
219 219 :label => l(:field_scm_path_encoding)
220 220 ) +
221 '<br />' + l(:text_scm_path_encoding_note))
221 '<br />'.html_safe + l(:text_scm_path_encoding_note))
222 222 end
223 223
224 224 def git_field_tags(form, repository)
General Comments 0
You need to be logged in to leave comments. Login now