From f9c7ca84964f61427779b877d892bc9194ef15fe Mon Sep 17 00:00:00 2001 From: Dion Hulse Date: Mon, 9 Nov 2015 04:50:25 +0000 Subject: [PATCH] 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 --- wp-includes/random_compat/random.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/random_compat/random.php b/wp-includes/random_compat/random.php index ebc7bd31cd..6b28d4672e 100644 --- a/wp-includes/random_compat/random.php +++ b/wp-includes/random_compat/random.php @@ -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 diff --git a/wp-includes/version.php b/wp-includes/version.php index 070289f8c4..f7e76544ee 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -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.