diff options
author | amaia <alexandre.maia@gmail.com> | 2016-10-17 05:53:12 -0700 |
---|---|---|
committer | amaia <alexandre.maia@gmail.com> | 2016-10-18 05:06:02 -0700 |
commit | 9c8c5e9dc050f32cec05f6903105ff34d726979b (patch) | |
tree | 91a74e2f1eddf65e43e2499242ebaded7082ff39 /lib | |
parent | c9d7ba4d696bfd0198ac75db6e1b2a08b4517f82 (diff) | |
download | gitlab-ce-9c8c5e9dc050f32cec05f6903105ff34d726979b.tar.gz |
fix: commit messages being double-escaped in activies tab
Diffstat (limited to 'lib')
-rw-r--r-- | lib/banzai/filter/html_entity_filter.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/banzai/filter/html_entity_filter.rb b/lib/banzai/filter/html_entity_filter.rb index e008fd428b0..f3bd587c28b 100644 --- a/lib/banzai/filter/html_entity_filter.rb +++ b/lib/banzai/filter/html_entity_filter.rb @@ -5,7 +5,7 @@ module Banzai # Text filter that escapes these HTML entities: & " < > class HtmlEntityFilter < HTML::Pipeline::TextFilter def call - ERB::Util.html_escape(text) + ERB::Util.html_escape_once(text) end end end |