Changeset 47198 for trunk/src/wp-admin/freedoms.php
- Timestamp:
- 02/06/2020 06:31:22 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/freedoms.php
r46705 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 // This file was used to also display the Privacy tab on the About screen from 4.9.6 until 5.3.0. … … 20 20 list( $display_version ) = explode( '-', get_bloginfo( 'version' ) ); 21 21 22 include( ABSPATH . 'wp-admin/admin-header.php' );22 require_once ABSPATH . 'wp-admin/admin-header.php'; 23 23 ?> 24 24 <div class="wrap about__container"> … … 124 124 125 125 </div> 126 <?php include( ABSPATH . 'wp-admin/admin-footer.php' ); ?>126 <?php require_once ABSPATH . 'wp-admin/admin-footer.php'; ?>
Note: See TracChangeset
for help on using the changeset viewer.