From a09d7f36158248a2713d7bed2c9a76a30f16378b Mon Sep 17 00:00:00 2001 From: Pascal Birchler Date: Sun, 28 Aug 2016 10:34:30 +0000 Subject: [PATCH] Bootstrap: Fix failing external HTTP tests after [38411]. When testing the transports, the transport name needs to be capitalized for the class name to be correct (`WP_Http_Curl` vs. `WP_Http_curl` ). See #36335. Built from https://develop.svn.wordpress.org/trunk@38416 git-svn-id: http://core.svn.wordpress.org/trunk@38357 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/version.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/version.php b/wp-includes/version.php index 5246ce048a..bed454dc37 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.7-alpha-38415'; +$wp_version = '4.7-alpha-38416'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.