Merge "Quoted attributes don't need to be followed by a space"
[lhc/web/wiklou.git] / includes / parser / Sanitizer.php
index 1c8a797..f8c3bc2 100644 (file)
@@ -513,6 +513,7 @@ class Sanitizer {
                $bits = explode( '<', $text );
                $text = str_replace( '>', '&gt;', array_shift( $bits ) );
                if ( !MWTidy::isEnabled() ) {
+                       wfDeprecated( 'disabling tidy', '1.33' );
                        $tagstack = $tablestack = [];
                        foreach ( $bits as $x ) {
                                $regs = [];