From 5081870aa8f742dd81fd46590acb6541fff16043 Mon Sep 17 00:00:00 2001 From: hellofromTonya Date: Fri, 10 Sep 2021 17:27:57 +0000 Subject: [PATCH] Tests: Fix "null to non-nullable" deprecation notice in `Tests_Admin_IncludesPlugin::test_get_plugin_files_folder()`. The `Tests_Admin_IncludesPlugin::_create_plugin()` expects the first parameter to be a text string to be written to a plugin file using `fwrite()`. Passing null causes a `fwrite(): Passing null to parameter #2 ($data) of type string is deprecated` notice. Ref: https://www.php.net/manual/en/function.fwrite Follow-up to [31002]. [41806]. Props jrf, hellofromTonya. See #53635. Built from https://develop.svn.wordpress.org/trunk@51800 git-svn-id: http://core.svn.wordpress.org/trunk@51407 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 85ee689f5e..85d0e73278 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.9-alpha-51799'; +$wp_version = '5.9-alpha-51800'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.