Changeset 47198 for trunk/src/wp-admin/options-permalink.php
- Timestamp:
- 02/06/2020 06:31:22 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/options-permalink.php
r47122 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' ) ) { … … 184 184 flush_rewrite_rules(); 185 185 186 require ( ABSPATH . 'wp-admin/admin-header.php' );186 require_once ABSPATH . 'wp-admin/admin-header.php'; 187 187 ?> 188 188 <div class="wrap"> … … 424 424 </div> 425 425 426 <?php require ( ABSPATH . 'wp-admin/admin-footer.php' ); ?>426 <?php require_once ABSPATH . 'wp-admin/admin-footer.php'; ?>
Note: See TracChangeset
for help on using the changeset viewer.