Make WordPress Core


Ignore:
Timestamp:
06/10/2016 04:49:09 AM (9 years ago)
Author:
peterwilsoncc
Message:

DOCS: Replace HTTP links with HTTPS.

Replaces unsecure links in documentation and translator comments with their secure versions.

Props johnpgreen, netweb

Fixes #36993

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/rest-api/class-wp-rest-server.php

    r37646 r37674  
    231231         * Mitigate possible JSONP Flash attacks.
    232232         *
    233          * http://miki.it/blog/2014/7/8/abusing-jsonp-with-rosetta-flash/
     233         * https://miki.it/blog/2014/7/8/abusing-jsonp-with-rosetta-flash/
    234234         */
    235235        $this->send_header( 'X-Content-Type-Options', 'nosniff' );
     
    390390            if ( $jsonp_callback ) {
    391391                // Prepend '/**/' to mitigate possible JSONP Flash attacks
    392                 // http://miki.it/blog/2014/7/8/abusing-jsonp-with-rosetta-flash/
     392                // https://miki.it/blog/2014/7/8/abusing-jsonp-with-rosetta-flash/
    393393                echo '/**/' . $jsonp_callback . '(' . $result . ')';
    394394            } else {
Note: See TracChangeset for help on using the changeset viewer.