Changeset 47198 for trunk/src/wp-includes/functions.php
- Timestamp:
- 02/06/2020 06:31:22 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.php
r47156 r47198 6 6 */ 7 7 8 require ( ABSPATH . WPINC . '/option.php' );8 require ABSPATH . WPINC . '/option.php'; 9 9 10 10 /** … … 836 836 837 837 // @todo Tidy this code and make the debug code optional. 838 include_once ( ABSPATH . WPINC . '/class-IXR.php' );838 include_once ABSPATH . WPINC . '/class-IXR.php'; 839 839 840 840 $post = get_post( $post ); … … 4573 4573 } 4574 4574 4575 require_once ( ABSPATH . WPINC . '/default-widgets.php' );4575 require_once ABSPATH . WPINC . '/default-widgets.php'; 4576 4576 4577 4577 add_action( '_admin_menu', 'wp_widgets_add_menu' ); … … 4635 4635 // Load custom DB error template, if present. 4636 4636 if ( file_exists( WP_CONTENT_DIR . '/db-error.php' ) ) { 4637 require_once ( WP_CONTENT_DIR . '/db-error.php' );4637 require_once WP_CONTENT_DIR . '/db-error.php'; 4638 4638 die(); 4639 4639 } … … 7260 7260 } 7261 7261 7262 require_once ( ABSPATH . 'wp-admin/includes/file.php' );7262 require_once ABSPATH . 'wp-admin/includes/file.php'; 7263 7263 $export_files = list_files( $exports_dir, 100, array( 'index.html' ) ); 7264 7264
Note: See TracChangeset
for help on using the changeset viewer.