Make WordPress Core


Ignore:
Timestamp:
03/13/2026 01:03:05 PM (6 months ago)
Author:
johnbillion
Message:

Grouped backports for the 4.8 branch.

  • XML-RPC: Switch to wp_safe_remote() when fetching a pingback URL.
  • HTML API: Prevent WP_HTML_Tag_Processor instances being unserialized and add some extra logic for validating pattern and template file paths.
  • KSES: Optimize PCRE pattern detecting numeric character references.
  • Customize: Improve escaping approach used for nav menu attributes.
  • Media: Ensure the attachment parent is accessible to the user before showing a link to it in the media manager.
  • Administration: Ensure client-side templates are only detected when they're correctly associated with a script tag.
  • Filesystem API: Don't attempt to extract invalid files from a zip when using the PclZip library.

Merges [61879-61884,61886-61887,61890,61913] to the 4.8 branch.

Props johnbillion, xknown, dmsnell, jorbin, peterwilson, desrosj, westonruter, jonsurrell, aurdasjb.

Location:
branches/4.8
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/4.8

  • branches/4.8/src/wp-includes/media.php

    r56864 r62005  
    31513151        }
    31523152
    3153         if ( $post_parent ) {
     3153        if ( $post_parent && current_user_can( 'read_post', $attachment->post_parent ) ) {
    31543154                $parent_type = get_post_type_object( $post_parent->post_type );
    31553155
     
    31583158                }
    31593159
    3160                 if ( $parent_type && current_user_can( 'read_post', $attachment->post_parent ) ) {
     3160                if ( $parent_type ) {
    31613161                        $response['uploadedToTitle'] = $post_parent->post_title ? $post_parent->post_title : __( '(no title)' );
    31623162                }
Note: See TracChangeset for help on using the changeset viewer.