Changeset 47198 for trunk/src/wp-admin/network/index.php
- Timestamp:
- 02/06/2020 06:31:22 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/network/index.php
r45674 r47198 9 9 10 10 /** Load WordPress Administration Bootstrap */ 11 require_once ( dirname( __FILE__ ) . '/admin.php' );11 require_once __DIR__ . '/admin.php'; 12 12 13 13 /** Load WordPress dashboard API */ 14 require_once ( ABSPATH . 'wp-admin/includes/dashboard.php' );14 require_once ABSPATH . 'wp-admin/includes/dashboard.php'; 15 15 16 16 if ( ! current_user_can( 'manage_network' ) ) { … … 63 63 add_thickbox(); 64 64 65 require_once ( ABSPATH . 'wp-admin/admin-header.php' );65 require_once ABSPATH . 'wp-admin/admin-header.php'; 66 66 67 67 ?> … … 81 81 <?php 82 82 wp_print_community_events_templates(); 83 include( ABSPATH . 'wp-admin/admin-footer.php' );83 require_once ABSPATH . 'wp-admin/admin-footer.php';
Note: See TracChangeset
for help on using the changeset viewer.