Ticket #44341: 44341.4.diff
| File 44341.4.diff, 1.4 KB (added by , 8 years ago) |
|---|
-
src/wp-includes/class-wp-editor.php
284 284 remove_filter( 'the_editor_content', 'format_for_editor' ); 285 285 } 286 286 287 // Back-compat for the `htmledit_pre` and `richedit_pre`filters287 // Add apply_filters_deprecated() to the 'htmledit_pre' and 'richedit_pre' filters 288 288 if ( 'html' === $default_editor && has_filter( 'htmledit_pre' ) ) { 289 // TODO: needs _deprecated_filter(), use _deprecated_function() as substitute for now 290 _deprecated_function( 'add_filter( htmledit_pre )', '4.3.0', 'add_filter( format_for_editor )' ); 291 $content = apply_filters( 'htmledit_pre', $content ); 289 /** This filter is documented in wp-includes/deprecated.php */ 290 $content = apply_filters_deprecated( 'htmledit_pre', array( $content ), '4.3.0', 'format_for_editor' ); 292 291 } elseif ( 'tinymce' === $default_editor && has_filter( 'richedit_pre' ) ) { 293 _deprecated_function( 'add_filter( richedit_pre )', '4.3.0', 'add_filter( format_for_editor )' );294 $content = apply_filters ( 'richedit_pre', $content);292 /** This filter is documented in wp-includes/deprecated.php */ 293 $content = apply_filters_deprecated( 'richedit_pre', array( $content ), '4.3.0', 'format_for_editor' ); 295 294 } 296 295 297 296 if ( false !== stripos( $content, 'textarea' ) ) {