Ticket #9935: 9935.patch
| File 9935.patch, 820 bytes (added by , 17 years ago) |
|---|
-
wp-admin/edit-comments.php
309 309 310 310 <tbody id="the-comment-list" class="list:comment"> 311 311 <?php 312 foreach ($comments as $comment) 312 foreach ($comments as $comment) { 313 $comment = get_comment_to_edit($comment->comment_ID); 313 314 _wp_comment_row( $comment->comment_ID, $mode, $comment_status ); 315 } 314 316 ?> 315 317 </tbody> 316 318 <tbody id="the-extra-comment-list" class="list:comment" style="display: none;"> 317 319 <?php 318 foreach ($extra_comments as $comment) 320 foreach ($extra_comments as $comment) { 321 $comment = get_comment_to_edit($comment->comment_ID); 319 322 _wp_comment_row( $comment->comment_ID, $mode, $comment_status ); 323 } 320 324 ?> 321 325 </tbody> 322 326 </table>