PluginProbe
Translate and Go multilingual – Automatic AI translation – wpLingua / 2.16.7
Translate and Go multilingual – Automatic AI translation – wpLingua v2.16.7
2.16.7 2.16.6 2.16.5 2.16.4 2.16.3 2.16.2 2.16.1 2.16.0 2.15.2 2.15.1 2.15.0 2.14.3 2.14.2 2.14.1 2.14.0 2.13.1 2.13.0 2.12.3 2.12.2 2.12.1 trunk 1.0.3 1.0.4 1.0.5 1.1.0 All 112 releases
← All changes | inc/assets.php +2 -0 2.12.12.16.7 View file →
@@ -118,8 +118,10 @@
118 118 $custom_css = get_option( 'wplng_custom_css' );
119 119
120 120 if ( ! empty( $custom_css ) && is_string( $custom_css ) ) {
121 121 $custom_css = wp_strip_all_tags( $custom_css );
122 + // Prevent breaking out of the <style> context
123 + $custom_css = str_replace( '</style', '', $custom_css );
122 124 echo '<style id="wplingua-inline-styles">' . $custom_css . '</style>';
123 125 }
124 126 }
125 127