Changeset 47198 for trunk/src/wp-admin/about.php
- Timestamp:
- 02/06/2020 06:31:22 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/about.php
r46724 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 /* translators: Page title of the About WordPress page in the admin. */ … … 15 15 list( $display_version ) = explode( '-', get_bloginfo( 'version' ) ); 16 16 17 include( ABSPATH . 'wp-admin/admin-header.php' );17 require_once ABSPATH . 'wp-admin/admin-header.php'; 18 18 ?> 19 19 <div class="wrap about__container"> … … 203 203 <?php 204 204 205 include( ABSPATH . 'wp-admin/admin-footer.php' );205 require_once ABSPATH . 'wp-admin/admin-footer.php'; 206 206 207 207 // These are strings we may use to describe maintenance/security releases, where we aim for no new strings.
Note: See TracChangeset
for help on using the changeset viewer.