From: Tom Hughes Date: Sat, 10 Jan 2015 17:37:15 +0000 (+0000) Subject: Restore removal of div and style elements when sanitizing HTML X-Git-Tag: live~4256 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/428f379eefd0d530ea79a892e6dc13751c274302?ds=sidebyside Restore removal of div and style elements when sanitizing HTML --- diff --git a/config/initializers/sanitize.rb b/config/initializers/sanitize.rb index 0df38f0fa..eb3039a13 100644 --- a/config/initializers/sanitize.rb +++ b/config/initializers/sanitize.rb @@ -1,4 +1,5 @@ Sanitize::Config::OSM = Sanitize::Config::RELAXED.dup +Sanitize::Config::OSM[:elements] -= [ 'div', 'style' ] Sanitize::Config::OSM[:add_attributes] = { 'a' => { 'rel' => 'nofollow' } } Sanitize::Config::OSM[:remove_contents] = [ 'script', 'style' ]