Changeset 43464
- Timestamp:
- 07/17/2018 07:37:29 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-editor.php
r43337 r43464 287 287 // Back-compat for 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
Note: See TracChangeset
for help on using the changeset viewer.