Make WordPress Core


Ignore:
Timestamp:
06/19/2014 10:52:35 PM (10 years ago)
Author:
johnbillion
Message:

Remove SSL verification by default for requests to wp-cron.php. Props sivel, rhurling. Fixes #12609.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/cron.php

    r26782 r28781  
    279279     *         @type int  $timeout   The request timeout in seconds. Default .01 seconds.
    280280     *         @type bool $blocking  Whether to set blocking for the request. Default false.
    281      *         @type bool $sslverify Whether to sslverify. Default true.
     281     *         @type bool $sslverify Whether SSL should be verified for the request. Default false.
    282282     *     }
    283283     * }
     
    290290            'blocking'  => false,
    291291            /** This filter is documented in wp-includes/class-http.php */
    292             'sslverify' => apply_filters( 'https_local_ssl_verify', true )
     292            'sslverify' => apply_filters( 'https_local_ssl_verify', false )
    293293        )
    294294    ) );
Note: See TracChangeset for help on using the changeset viewer.