Make WordPress Core

Ticket #42938: 42938.7.diff

File 42938.7.diff, 1.8 KB (added by audrasjb, 5 years ago)

Refreshed patch

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

    diff --git a/src/wp-admin/css/dashboard.css b/src/wp-admin/css/dashboard.css
    index eac01008e8..92a8c01f50 100644
    a b a.rsswidget { 
    10101010        word-wrap: break-word;
    10111011}
    10121012
     1013.dashboard-comment-wrap-no-avatar {
     1014        word-wrap: break-word;
     1015}
     1016
    10131017/* Browser Nag */
    10141018#dashboard_browser_nag a.update-browser-link {
    10151019        font-size: 1.2em;
  • src/wp-admin/includes/dashboard.php

    diff --git a/src/wp-admin/includes/dashboard.php b/src/wp-admin/includes/dashboard.php
    index 9533c24dec..944d7555f1 100644
    a b function _wp_dashboard_recent_comments_row( &$comment, $show_date = true ) { 
    775775
    776776                <li id="comment-<?php echo $comment->comment_ID; ?>" <?php comment_class( array( 'comment-item', wp_get_comment_status( $comment ) ), $comment ); ?>>
    777777
    778                         <?php echo get_avatar( $comment, 50, 'mystery' ); ?>
     778                        <?php
     779                        $show_avatars       = get_option( 'show_avatars' );
     780                        $show_avatars_class = 'dashboard-comment-wrap-no-avatar';
     781
     782                        if ( 1 == $show_avatars ) {
     783                                echo get_avatar( $comment, 50, 'mystery' );
     784                                $show_avatars_class = 'dashboard-comment-wrap';
     785                        }
     786                        ?>
    779787
    780788                        <?php if ( ! $comment->comment_type || 'comment' == $comment->comment_type ) : ?>
    781789
    782                         <div class="dashboard-comment-wrap has-row-actions">
    783                         <p class="comment-meta">
     790                                <div class="<?php echo $show_avatars_class; ?> has-row-actions">
     791                                <p class="comment-meta">
    784792                                <?php
    785793                                // Comments might not have a post they relate to, e.g. programmatically created ones.
    786794                                if ( $comment_post_link ) {
    function _wp_dashboard_recent_comments_row( &$comment, $show_date = true ) { 
    800808                                        );
    801809                                }
    802810                                ?>
    803                         </p>
     811                                </p>
    804812
    805                                 <?php
     813                        <?php
    806814                        else :
    807815                                switch ( $comment->comment_type ) {
    808816                                        case 'pingback':