Make WordPress Core


Ignore:
Timestamp:
06/10/2020 06:42:10 PM (5 years ago)
Author:
whyisjake
Message:

General: Backport several commits for release.

  • Embeds: Ensure that the title attribute is set correctly on embeds.
  • Editor: Prevent HTML decoding on by setting the proper editor context.
  • Formatting: Ensure that wp_validate_redirect() sanitizes a wider variety of characters.
  • Themes: Ensure a broken theme name is returned properly.
  • Administration: Add a new filter to extend set-screen-option.

Merges [47947-47951] to the 4.6 branch.
Props xknown, sstoqnov, vortfu, SergeyBiryukov, whyisjake.

Location:
branches/4.6
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/4.6

  • branches/4.6/src/wp-admin/includes/media.php

    r40461 r47974  
    28082808    if ( preg_match( '#^(audio|video)/#', $post->post_mime_type ) ) {
    28092809        echo ': ' . __( 'Displayed on attachment pages.' );
    2810     } ?></label>
    2811     <?php wp_editor( $post->post_content, 'attachment_content', $editor_args ); ?>
     2810    }
     2811
     2812    ?>
     2813    </label>
     2814    <?php wp_editor( format_to_edit( $post->post_content ), 'attachment_content', $editor_args ); ?>
    28122815
    28132816    </div>
Note: See TracChangeset for help on using the changeset viewer.