Changeset 7098
- Timestamp:
- 02/28/2008 10:12:04 PM (17 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/admin-ajax.php
r7082 r7098 366 366 get_comment( $comment ); 367 367 ob_start(); 368 _wp_comment_row( $comment->comment_ID, $mode );368 _wp_comment_row( $comment->comment_ID, $mode, false ); 369 369 $comment_list_item = ob_get_contents(); 370 370 ob_end_clean(); -
trunk/wp-admin/edit-comments.php
r7083 r7098 192 192 <?php 193 193 foreach ($comments as $comment) 194 _wp_comment_row( $comment->comment_ID, $mode );194 _wp_comment_row( $comment->comment_ID, $mode, $comment_status ); 195 195 ?> 196 196 </tbody> … … 198 198 <?php 199 199 foreach ($extra_comments as $comment) 200 _wp_comment_row( $comment->comment_ID, $mode );200 _wp_comment_row( $comment->comment_ID, $mode, $comment_status ); 201 201 ?> 202 202 </tbody> -
trunk/wp-admin/edit-pages.php
r7082 r7098 189 189 <?php 190 190 foreach ($comments as $comment) 191 _wp_comment_row( $comment->comment_ID, 'detail', false );191 _wp_comment_row( $comment->comment_ID, 'detail', false, false ); 192 192 ?> 193 193 </tbody> -
trunk/wp-admin/edit.php
r7082 r7098 213 213 <?php 214 214 foreach ($comments as $comment) 215 _wp_comment_row( $comment->comment_ID, 'detail', false );215 _wp_comment_row( $comment->comment_ID, 'detail', false, false ); 216 216 ?> 217 217 </tbody> -
trunk/wp-admin/includes/template.php
r7089 r7098 593 593 } 594 594 595 function _wp_comment_row( $comment_id, $mode, $c heckbox = true ) {595 function _wp_comment_row( $comment_id, $mode, $comment_status, $checkbox = true ) { 596 596 global $comment, $post; 597 597 $comment = get_comment( $comment_id );
Note: See TracChangeset
for help on using the changeset viewer.