Ticket #7054: 7054-2.diff
| File 7054-2.diff, 1.9 KB (added by solarissmoke, 2 years ago) |
|---|
-
wp-admin/includes/dashboard.php
707 707 <div id="comment-<?php echo $comment->comment_ID; ?>" <?php comment_class( array( 'comment-item', wp_get_comment_status($comment->comment_ID) ) ); ?>> 708 708 <?php if ( !$comment->comment_type || 'comment' == $comment->comment_type ) : ?> 709 709 710 <?php echo get_avatar( $comment, 50 ); ?>710 <?php echo get_avatar( $comment, 50, 'mystery' ); ?> 711 711 712 712 <div class="dashboard-comment-wrap"> 713 713 <h4 class="comment-meta"> -
wp-admin/includes/comment.php
148 148 */ 149 149 function floated_admin_avatar( $name ) { 150 150 global $comment; 151 $avatar = get_avatar( $comment, 32 );151 $avatar = get_avatar( $comment, 32, 'mystery' ); 152 152 return "$avatar $name"; 153 153 } 154 154 -
wp-admin/options-discussion.php
203 203 <th scope="row"><?php _e('Default Avatar') ?></th> 204 204 <td class="defaultavatarpicker"><fieldset><legend class="screen-reader-text"><span><?php _e('Default Avatar') ?></span></legend> 205 205 206 <?php _e('For users without a custom avatar of their own, you can either display a generic logo or a generated one based on their e-mail address. '); ?><br />206 <?php _e('For users without a custom avatar of their own, you can either display a generic logo or a generated one based on their e-mail address. This doesn\'t apply in the Administration area, where only custom avatars will be displayed.'); ?><br /> 207 207 208 208 <?php 209 209 $avatar_defaults = array(
