From d533b76ef848528304a5ef08b82cc6e674eeb3cc Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 25 Jun 2022 14:45:12 +0000 Subject: [PATCH] Tests: Remove multiple `$wpdb::placeholder_escape()` calls in `wpdb` tests. This aims to improve performance of the tests by reducing the number of function calls. Since `$wpdb::placeholder_escape()` saves the result in a static variable on the first run, there is no need for repeated function calls during the same request or test run, as the result would still be the same. Follow-up to [42056]. See #55652. Built from https://develop.svn.wordpress.org/trunk@53577 git-svn-id: http://core.svn.wordpress.org/trunk@53166 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 c2bbebc40e..f861678f33 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.1-alpha-53576'; +$wp_version = '6.1-alpha-53577'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.