]> git.openstreetmap.org Git - rails.git/commitdiff
Restore removal of div and style elements when sanitizing HTML
authorTom Hughes <tom@compton.nu>
Sat, 10 Jan 2015 17:37:15 +0000 (17:37 +0000)
committerTom Hughes <tom@compton.nu>
Sat, 10 Jan 2015 17:41:17 +0000 (17:41 +0000)
config/initializers/sanitize.rb

index 0df38f0fa87339702ec4ad6425068fcf3998fa1d..eb3039a132f70db038e6bb7b08bd6e4fb8e7af56 100644 (file)
@@ -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' ]