make call to 'html_escape' unambiguous
This commit is contained in:
parent
a56611e389
commit
cff44b5fb9
3 changed files with 3 additions and 3 deletions
|
@ -90,7 +90,7 @@ module TreeHelper
|
|||
end
|
||||
|
||||
def commit_in_single_accessible_branch
|
||||
branch_name = html_escape(selected_branch)
|
||||
branch_name = ERB::Util.html_escape(selected_branch)
|
||||
|
||||
message = _("Your changes can be committed to %{branch_name} because a merge "\
|
||||
"request is open.") % { branch_name: "<strong>#{branch_name}</strong>" }
|
||||
|
|
|
@ -9,7 +9,7 @@ module Banzai
|
|||
lang_attr = lang.present? ? %Q{ lang="#{lang}"} : ''
|
||||
result =
|
||||
"<pre>" \
|
||||
"<code#{lang_attr}>#{html_escape(code)}</code>" \
|
||||
"<code#{lang_attr}>#{ERB::Util.html_escape(code)}</code>" \
|
||||
"</pre>"
|
||||
|
||||
out(result)
|
||||
|
|
|
@ -6,7 +6,7 @@ module Banzai
|
|||
lang_attr = lang ? %Q{ lang="#{lang}"} : ''
|
||||
|
||||
"\n<pre>" \
|
||||
"<code#{lang_attr}>#{html_escape(code)}</code>" \
|
||||
"<code#{lang_attr}>#{ERB::Util.html_escape(code)}</code>" \
|
||||
"</pre>"
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue