Changeset 47198 for trunk/src/wp-admin/options-reading.php
- Timestamp:
- 02/06/2020 06:31:22 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/options-reading.php
r45932 r47198 8 8 9 9 /** WordPress Administration Bootstrap */ 10 require_once ( dirname( __FILE__ ) . '/admin.php' );10 require_once __DIR__ . '/admin.php'; 11 11 12 12 if ( ! current_user_can( 'manage_options' ) ) { … … 53 53 ); 54 54 55 include( ABSPATH . 'wp-admin/admin-header.php' );55 require_once ABSPATH . 'wp-admin/admin-header.php'; 56 56 ?> 57 57 … … 216 216 </form> 217 217 </div> 218 <?php include( ABSPATH . 'wp-admin/admin-footer.php' ); ?>218 <?php require_once ABSPATH . 'wp-admin/admin-footer.php'; ?>
Note: See TracChangeset
for help on using the changeset viewer.