##// END OF EJS Templates
Rails3: helper: use html_safe for git setting...
Toshi MARUYAMA -
r7429:2681578d53ea
parent child
Show More
@@ -227,13 +227,13 module RepositoriesHelper
227 227 :size => 60, :required => true,
228 228 :disabled => (repository && !repository.root_url.blank?)
229 229 ) +
230 '<br />' +
230 '<br />'.html_safe +
231 231 l(:text_git_repository_note)) +
232 232 content_tag('p', form.select(
233 233 :path_encoding, [nil] + Setting::ENCODINGS,
234 234 :label => l(:field_scm_path_encoding)
235 235 ) +
236 '<br />' + l(:text_scm_path_encoding_note)) +
236 '<br />'.html_safe + l(:text_scm_path_encoding_note)) +
237 237 content_tag('p', form.check_box(
238 238 :extra_report_last_commit,
239 239 :label => l(:label_git_report_last_commit)
General Comments 0
You need to be logged in to leave comments. Login now