From 4265fa897a5efb50560916a31b0e24cd81f9b104 Mon Sep 17 00:00:00 2001 From: Boone Gorges Date: Fri, 2 Oct 2015 13:51:26 +0000 Subject: [PATCH] Fix `preg_match_all()` syntax in PCRE benchmark test util. In versions of PHP earlier than 5.4, the `$matches` parameter was required. Excluding it here meant that PCRE benchmarking tests were erroring on older versions of PHP without cleaning up the PCRE ini settings, causing various problems on later tests. Props miqrogroove, dd32, boonebgorges. And to the cosmic forces that cause bugs like this. The best part of waking up is diagnosing leakage between automated tests. See #34121. Built from https://develop.svn.wordpress.org/trunk@34772 git-svn-id: http://core.svn.wordpress.org/trunk@34737 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 7a1a944417..0dfee6f3c9 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-34771'; +$wp_version = '4.4-alpha-34772'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.