Make WordPress Core

Ticket #42938: 42938.6.diff

File 42938.6.diff, 1.7 KB (added by garrett-eclipse, 5 years ago)

One tiny tweak, moved the space off the $show_avatars_class setup and just placed after <?php echo $show_avatars_class; ?> as it will always be needed

  • src/wp-admin/css/dashboard.css

     
    999999        word-wrap: break-word;
    10001000}
    10011001
     1002.dashboard-comment-wrap-no-avatar {
     1003        word-wrap: break-word;
     1004}
     1005
    10021006/* Browser Nag */
    10031007#dashboard_browser_nag a.update-browser-link {
    10041008        font-size: 1.2em;
  • src/wp-admin/includes/dashboard.php

     
    761761
    762762                <li id="comment-<?php echo $comment->comment_ID; ?>" <?php comment_class( array( 'comment-item', wp_get_comment_status( $comment ) ), $comment ); ?>>
    763763
    764                         <?php echo get_avatar( $comment, 50, 'mystery' ); ?>
     764                        <?php
     765                        $show_avatars       = get_option( 'show_avatars' );
     766                        $show_avatars_class = 'dashboard-comment-wrap-no-avatar';
    765767
     768                        if ( 1 == $show_avatars ) {
     769                                echo get_avatar( $comment, 50, 'mystery' );
     770                                $show_avatars_class = 'dashboard-comment-wrap';
     771                        }
     772                        ?>
     773
    766774                        <?php if ( ! $comment->comment_type || 'comment' == $comment->comment_type ) : ?>
    767775
    768                         <div class="dashboard-comment-wrap has-row-actions">
    769                         <p class="comment-meta">
     776                                <div class="<?php echo $show_avatars_class; ?> has-row-actions">
     777                                <p class="comment-meta">
    770778                                <?php
    771779                                // Comments might not have a post they relate to, e.g. programmatically created ones.
    772780                                if ( $comment_post_link ) {
     
    786794                                        );
    787795                                }
    788796                                ?>
    789                         </p>
     797                                </p>
    790798
    791                                 <?php
     799                        <?php
    792800                        else :
    793801                                switch ( $comment->comment_type ) {
    794802                                        case 'pingback':