diff --git src/wp-includes/pluggable.php src/wp-includes/pluggable.php
index eaaf47d154..e7195d4d1a 100644
|
|
function get_avatar( $id_or_email, $size = 96, $default = '', $alt = '', $args = |
2429 | 2429 | "<img alt='%s' src='%s' srcset='%s' class='%s' height='%d' width='%d' %s/>", |
2430 | 2430 | esc_attr( $args['alt'] ), |
2431 | 2431 | esc_url( $url ), |
2432 | | esc_attr( "$url2x 2x" ), |
| 2432 | esc_url( "$url2x" ) . ' 2x', |
2433 | 2433 | esc_attr( join( ' ', $class ) ), |
2434 | 2434 | (int) $args['height'], |
2435 | 2435 | (int) $args['width'], |
… |
… |
function wp_text_diff( $left_string, $right_string, $args = null ) { |
2530 | 2530 | return $r; |
2531 | 2531 | } |
2532 | 2532 | endif; |
2533 | | |