Make WordPress Core

Changeset 51742

Timestamp:
09/08/2021 05:22:10 PM (3 years ago)
Author:
SergeyBiryukov
Message:

General: Only use _jsonp_wp_die_handler() for JSONP REST API requests.

Props mdawaffe, peterwilsoncc.
Merges [51740] to the 5.7 branch.

Location:
branches/5.7
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/5.7

  • branches/5.7/src/wp-includes/functions.php

    r50409 r51742  
    33773377         */
    33783378        $function = apply_filters( 'wp_die_json_handler', '_json_wp_die_handler' );
    3379     } elseif ( wp_is_jsonp_request() ) {
     3379    } elseif ( wp_is_jsonp_request() ) {
    33803380        /**
    3381          * Filters the callback for killing WordPress execution for JSONP requests.
     3381         * Filters the callback for killing WordPress execution for JSONP requests.
    33823382         *
    33833383         * @since 5.2.0
Note: See TracChangeset for help on using the changeset viewer.