Changeset 47198 for trunk/src/wp-admin/edit-comments.php
- Timestamp:
- 02/06/2020 06:31:22 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/edit-comments.php
r47152 r47198 8 8 9 9 /** WordPress Administration Bootstrap */ 10 require_once ( dirname( __FILE__ ) . '/admin.php' );10 require_once __DIR__ . '/admin.php'; 11 11 if ( ! current_user_can( 'edit_posts' ) ) { 12 12 wp_die( … … 206 206 ); 207 207 208 require_once ( ABSPATH . 'wp-admin/admin-header.php' );208 require_once ABSPATH . 'wp-admin/admin-header.php'; 209 209 ?> 210 210 … … 352 352 wp_comment_reply( '-1', true, 'detail' ); 353 353 wp_comment_trashnotice(); 354 include( ABSPATH . 'wp-admin/admin-footer.php' ); ?>354 require_once ABSPATH . 'wp-admin/admin-footer.php'; ?>
Note: See TracChangeset
for help on using the changeset viewer.