Make WordPress Core

Changeset 41156


Ignore:
Timestamp:
07/26/2017 01:21:37 PM (7 years ago)
Author:
SergeyBiryukov
Message:

Users: Use esc_url() instead of esc_attr() to escape the value of the srcset attribute in get_avatar().

Props joemcgill, henry.wright.
Fixes #41215.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/pluggable.php

    r41153 r41156  
    25362536        esc_attr( $args['alt'] ),
    25372537        esc_url( $url ),
    2538         esc_attr( "$url2x 2x" ),
     2538        esc_url( $url2x ) . ' 2x',
    25392539        esc_attr( join( ' ', $class ) ),
    25402540        (int) $args['height'],
Note: See TracChangeset for help on using the changeset viewer.