PluginProbe
ActivityPub / 7.8.2
ActivityPub v7.8.2
9.3.1 9.3.0 9.2.2 9.2.1 9.2.0 9.1.0 9.0.2 9.0.1 9.0.0 8.3.0 8.2.1 8.2.0 8.1.1 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.2.0 1.3.0 2.0.0 2.0.1 2.1.0 2.1.1 All 160 releases
← All changes | includes/class-shortcodes.php +2 -0 8.2.07.8.2 View file →
@@ -187,8 +187,10 @@
187 187 $content = \wptexturize( $content );
188 188 $content = \wp_filter_content_tags( $content );
189 189 }
190 190
191 + // Replace script and style elements.
192 + $content = \preg_replace( '@<(script|style)[^>]*?>.*?</\\1>@si', '', $content );
191 193 $content = \strip_shortcodes( $content );
192 194 $content = Sanitize::clean_html( $content );
193 195 $content = Sanitize::strip_whitespace( $content );
194 196