Changeset 47198 for trunk/src/wp-admin/admin-header.php
- Timestamp:
- 02/06/2020 06:31:22 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/admin-header.php
r45932 r47198 9 9 header( 'Content-Type: ' . get_option( 'html_type' ) . '; charset=' . get_option( 'blog_charset' ) ); 10 10 if ( ! defined( 'WP_ADMIN' ) ) { 11 require_once ( dirname( __FILE__ ) . '/admin.php' );11 require_once __DIR__ . '/admin.php'; 12 12 } 13 13 … … 234 234 235 235 <div id="wpwrap"> 236 <?php require ( ABSPATH . 'wp-admin/menu-header.php' ); ?>236 <?php require ABSPATH . 'wp-admin/menu-header.php'; ?> 237 237 <div id="wpcontent"> 238 238 … … 290 290 291 291 if ( $parent_file == 'options-general.php' ) { 292 require ( ABSPATH . 'wp-admin/options-head.php' );293 } 292 require ABSPATH . 'wp-admin/options-head.php'; 293 }
Note: See TracChangeset
for help on using the changeset viewer.