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

Built from https://develop.svn.wordpress.org/trunk@35587


git-svn-id: http://core.svn.wordpress.org/trunk@35551 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Dion Hulse 2015-11-09 04:50:25 +00:00
parent 2103984c02
commit f9c7ca8496
2 changed files with 2 additions and 2 deletions

View File

@ -111,7 +111,7 @@ if (PHP_VERSION_ID < 70000) {
PHP_VERSION_ID >= 50300
) ||
// Windows with PHP >= 5.3.4
PHP_VERSION_ID >= 50304
PHP_VERSION_ID >= 50401 // Modification from upstream, see #34409
)
) {
// See random_bytes_openssl.php

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.4-beta3-35586';
$wp_version = '4.4-beta3-35587';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.