Changeset 47198 for trunk/src/wp-includes/general-template.php
- Timestamp:
- 02/06/2020 06:31:22 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/general-template.php
r47122 r47198 256 256 if ( '' != $search_form_template ) { 257 257 ob_start(); 258 require ( $search_form_template );258 require $search_form_template; 259 259 $form = ob_get_clean(); 260 260 } else { … … 3409 3409 function wp_editor( $content, $editor_id, $settings = array() ) { 3410 3410 if ( ! class_exists( '_WP_Editors', false ) ) { 3411 require ( ABSPATH . WPINC . '/class-wp-editor.php' );3411 require ABSPATH . WPINC . '/class-wp-editor.php'; 3412 3412 } 3413 3413 _WP_Editors::editor( $content, $editor_id, $settings ); … … 3425 3425 function wp_enqueue_editor() { 3426 3426 if ( ! class_exists( '_WP_Editors', false ) ) { 3427 require ( ABSPATH . WPINC . '/class-wp-editor.php' );3427 require ABSPATH . WPINC . '/class-wp-editor.php'; 3428 3428 } 3429 3429
Note: See TracChangeset
for help on using the changeset viewer.