Changeset 14139 for trunk/wp-admin/comment.php
- Timestamp:
- 04/18/2010 06:14:45 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/comment.php
r13571 r14139 8 8 9 9 /** Load WordPress Bootstrap */ 10 require_once(' admin.php');10 require_once('./admin.php'); 11 11 12 12 $parent_file = 'edit-comments.php'; … … 37 37 function comment_footer_die( $msg ) { 38 38 echo "<div class='wrap'><p>$msg</p></div>"; 39 include(' admin-footer.php');39 include('./admin-footer.php'); 40 40 die; 41 41 } … … 47 47 48 48 wp_enqueue_script('comment'); 49 require_once(' admin-header.php');49 require_once('./admin-header.php'); 50 50 51 51 $comment_id = absint( $_GET['c'] ); … … 62 62 $comment = get_comment_to_edit( $comment_id ); 63 63 64 include(' edit-form-comment.php');64 include('./edit-form-comment.php'); 65 65 66 66 break; … … 89 89 } 90 90 91 require_once(' admin-header.php');91 require_once('./admin-header.php'); 92 92 93 93 $formaction = $action . 'comment'; … … 277 277 } // end switch 278 278 279 include(' admin-footer.php');279 include('./admin-footer.php'); 280 280 281 281 ?>
Note: See TracChangeset
for help on using the changeset viewer.