Make WordPress Core

Changeset 35587


Ignore:
Timestamp:
11/09/2015 04:49:53 AM (9 years ago)
Author:
dd32
Message:

Random_Compat: Bump the OpenSSL requirement for windows servers to 5.4.1 while the upstream issue is resolved.

Before PHP 5.4.1 the OpenSSL extension used a OpenSSL provided function which is seemingly slow under some circumstances, PHP 5.4.1+ uses the windows crypto API.

Fixes #34409

File:
1 edited

Legend:

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

    r35410 r35587  
    112112                ) ||
    113113                // Windows with PHP >= 5.3.4
    114                 PHP_VERSION_ID >= 50304
     114                PHP_VERSION_ID >= 50401 // Modification from upstream, see #34409
    115115            )
    116116        ) {
Note: See TracChangeset for help on using the changeset viewer.