Make WordPress Core


Ignore:
Timestamp:
10/17/2022 06:02:28 PM (2 years ago)
Author:
SergeyBiryukov
Message:

Grouped backports to the 4.5 branch.

  • Posts, Post types: Apply KSES to post-by-email content,
  • General: Validate host on "Are you sure?" screen,
  • Posts, Post types: Remove emails from post-by-email logs,
  • Pings/trackbacks: Apply KSES to all trackbacks,
  • Comments: Apply kses when editing comments,
  • Customize: Escape blogname option in underscores templates,
  • Mail: Reset PHPMailer properties between use,
  • Query: Validate relation in WP_Date_Query,
  • Widgets: Escape RSS error messages for display.

Merges [54521], [54522], [54523], [54525], [54526], [54527], [54529], [54530], [54541] to the 4.5 branch.
Props voldemortensen, johnbillion, paulkevan, peterwilsoncc, xknown, dd32, audrasjb, martinkrcho, davidbaumwald, tykoted, johnjamesjacoby, ehtis, matveb, talldanwp.

Location:
branches/4.5
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/4.5

  • branches/4.5/src/wp-includes/customize/class-wp-customize-header-image-control.php

    r35923 r54560  
    108108
    109109            <button type="button" class="choice thumbnail"
    110                 data-customize-image-value="{{{data.header.url}}}"
     110                data-customize-image-value="{{data.header.url}}"
    111111                data-customize-header-image-data="{{JSON.stringify(data.header)}}">
    112112                <span class="screen-reader-text"><?php _e( 'Set image' ); ?></span>
    113                 <img src="{{{data.header.thumbnail_url}}}" alt="{{{data.header.alt_text || data.header.description}}}">
     113                <img src="{{data.header.thumbnail_url}}" alt="{{data.header.alt_text || data.header.description}}" />
    114114            </button>
    115115
Note: See TracChangeset for help on using the changeset viewer.