From 1b6bb2f18395876c5c638057369a39c1ca80f5ed Mon Sep 17 00:00:00 2001 From: Boone Gorges Date: Mon, 23 Feb 2015 01:08:25 +0000 Subject: [PATCH] Ensure that a request URL is always set in `WP_UnitTestCase::go_to()`. Failure to set this variable meant that passing the home URL to `go_to()` (without a trailing slash) resulted in a PHP notice, and failed to reset the globals properly. Props joostdevalk. Fixes #31417. Built from https://develop.svn.wordpress.org/trunk@31515 git-svn-id: http://core.svn.wordpress.org/trunk@31496 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 de27709021..8ccb23c76b 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.2-alpha-31514'; +$wp_version = '4.2-alpha-31515'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.