Skip to content

Commit

Permalink
Random_Compat: Bump the OpenSSL requirement for windows servers to 5.…
Browse files Browse the repository at this point in the history
…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
  • Loading branch information
dd32 committed Nov 9, 2015
1 parent 2103984 commit f9c7ca8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion wp-includes/random_compat/random.php
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ class_exists('COM')
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
Expand Down
2 changes: 1 addition & 1 deletion wp-includes/version.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit f9c7ca8

Please sign in to comment.