Ticket #44341: 44341.3.diff
| File 44341.3.diff, 1.3 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` filters 287 /** 288 * Back-compat for the `htmledit_pre` and `richedit_pre` filters 289 * 290 * @deprecated 4.3.0 Use format_for_editor() 291 * 292 */ 288 293 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 ); 294 $content = apply_filters_deprecated( 'htmledit_pre', array( $content ), '4.3.0', 'format_for_editor' ); 292 295 } 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 ); 296 $content = apply_filters_deprecated( 'richedit_pre', array( $content ), '4.3.0', 'format_for_editor' ); 295 297 } 296 298 297 299 if ( false !== stripos( $content, 'textarea' ) ) {
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)