Changeset 47198 for trunk/src/wp-includes/class-wp-editor.php
- Timestamp:
- 02/06/2020 06:31:22 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-editor.php
r47164 r47198 219 219 220 220 if ( ! function_exists( 'media_buttons' ) ) { 221 include( ABSPATH . 'wp-admin/includes/media.php' );221 require ABSPATH . 'wp-admin/includes/media.php'; 222 222 } 223 223 … … 490 490 foreach ( $mce_external_languages as $name => $path ) { 491 491 if ( @is_file( $path ) && @is_readable( $path ) ) { 492 include_once ( $path );492 include_once $path; 493 493 $ext_plugins .= $strings . "\n"; 494 494 $loaded_langs[] = $name;
Note: See TracChangeset
for help on using the changeset viewer.