diff options
author | Eric Eastwood <contact@ericeastwood.com> | 2017-03-14 01:24:56 -0500 |
---|---|---|
committer | Eric Eastwood <contact@ericeastwood.com> | 2017-03-14 11:16:26 -0500 |
commit | 3e29936a15eb2f6c9bc2d92ebf1a67a0cadb916e (patch) | |
tree | c88bc426c4473652c0773c038b2753a8997bc30d /app/helpers/events_helper.rb | |
parent | ffcddb295950729dbc4ee7a3c0e32f7dec00da99 (diff) | |
download | gitlab-ce-3e29936a15eb2f6c9bc2d92ebf1a67a0cadb916e.tar.gz |
Fix first line markdown helper for user profile activity stream29425-fix-activity-stream-first-line-markdown
Fix https://gitlab.com/gitlab-org/gitlab-ce/issues/29425
Diffstat (limited to 'app/helpers/events_helper.rb')
-rw-r--r-- | app/helpers/events_helper.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/helpers/events_helper.rb b/app/helpers/events_helper.rb index 5605393c0c3..fb872a13f74 100644 --- a/app/helpers/events_helper.rb +++ b/app/helpers/events_helper.rb @@ -165,8 +165,8 @@ module EventsHelper sanitize( text, - tags: %w(a img b pre code p span), - attributes: Rails::Html::WhiteListSanitizer.allowed_attributes + ['style'] + tags: %w(a img gl-emoji b pre code p span), + attributes: Rails::Html::WhiteListSanitizer.allowed_attributes + ['style', 'data-name', 'data-unicode-version'] ) end |