Changeset 8450

Show
Ignore:
Timestamp:
07/25/08 04:28:52 (1 month ago)
Author:
iammattthomas
Message:

Move comment author into new table column

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/crazyhorse/wp-admin/edit-comments.php

    r8439 r8450  
    201201  <tr> 
    202202    <th scope="col" class="check-column"><input type="checkbox" /></th> 
    203     <th scope="col"><?php _e('Comment') ?></th> 
     203    <th scope="col" class="comment-column"><?php _e('Comment') ?></th> 
     204    <th scope="col" class="author-column"><?php _e('Author') ?></th> 
    204205    <th scope="col"><?php _e('Comment Submitted') ?></th> 
    205206    <th scope="col"><?php _e('In Response To This Post') ?></th> 
  • branches/crazyhorse/wp-admin/includes/template.php

    r8447 r8450  
    764764    <td class="check-column"><?php if ( current_user_can('edit_post', $comment->comment_post_ID) ) { ?><input type="checkbox" name="delete_comments[]" value="<?php echo $comment->comment_ID; ?>" /><?php } ?></td> 
    765765<?php endif; ?> 
    766     <td class="comment"> 
     766    <td class="comment-column"> 
    767767    <?php if ( 'detail' == $mode || 'single' == $mode ) comment_text(); ?> 
    768     <p class="comment-author"><strong><?php comment_author(); ?></strong> | 
    769     <?php if ( !empty($author_url) ) : ?> 
    770     <a href="<?php echo $author_url ?>"><?php echo $author_url_display; ?></a> | 
    771     <?php endif; ?> 
    772     <?php if ( current_user_can( 'edit_post', $post->ID ) ) : ?> 
    773     <?php if ( !empty($comment->comment_author_email) ): ?> 
    774     <?php comment_author_email_link() ?> | 
    775     <?php endif; ?> 
    776     <a href="edit-comments.php?s=<?php comment_author_IP() ?>&amp;mode=detail"><?php comment_author_IP() ?></a> 
    777     <?php endif; //current_user_can?>     
    778     </p> 
     768     
    779769<?php 
    780770    $actions = array(); 
     
    808798    ?> 
    809799    </td> 
     800    <td class="author-column"> 
     801        <strong><?php comment_author(); ?></strong><br /> 
     802        <?php if ( !empty($author_url) ) : ?> 
     803        <a href="<?php echo $author_url ?>"><?php echo $author_url_display; ?></a><br /> 
     804        <?php endif; ?> 
     805        <?php if ( current_user_can( 'edit_post', $post->ID ) ) : ?> 
     806        <?php if ( !empty($comment->comment_author_email) ): ?> 
     807        <?php comment_author_email_link() ?><br /> 
     808        <?php endif; ?> 
     809        <a href="edit-comments.php?s=<?php comment_author_IP() ?>&amp;mode=detail"><?php comment_author_IP() ?></a> 
     810        <?php endif; //current_user_can?>     
     811    </td> 
    810812    <td><?php comment_date(__('Y/m/d \a\t g:ia')); ?></td> 
    811813<?php if ( 'single' !== $mode ) : ?> 
  • branches/crazyhorse/wp-admin/wp-admin.css

    r8449 r8450  
    504504 
    505505.comment-column { 
    506     margin-left: 5px; 
     506    width: 50%; 
     507
     508 
     509.comment-column p { 
     510    margin-top: 0; 
     511
     512 
     513.author-column { 
     514    width: 20%; 
     515
     516 
     517.author-column img { 
     518    float: left; 
     519    margin-right: 10px; 
     520    margin-top: 3px; 
    507521} 
    508522