From cbcd3ffef303d4beb83910bd2b5aa4ba58948dc0 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 21 May 2021 10:40:56 +0000 Subject: [PATCH] Boostrap/Load: Further update the language in `wp-config-sample.php`. This restores "That's all, stop editing!" line to its previous format, to avoid breaking external integrations looking for that format specifically. Follow up to [50915], [50917], [50918]. Props swissspidy, schlessera. Fixes #37199. Built from https://develop.svn.wordpress.org/trunk@50946 git-svn-id: http://core.svn.wordpress.org/trunk@50555 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-config-sample.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-config-sample.php b/wp-config-sample.php index 85691d2bfc..d8469e730f 100644 --- a/wp-config-sample.php +++ b/wp-config-sample.php @@ -81,11 +81,11 @@ $table_prefix = 'wp_'; */ define( 'WP_DEBUG', false ); -/** Add any custom values after this line. */ +/* Add any custom values between this line and the "stop editing" line. */ -/** Custom values must be above this line. That's all, stop editing! Happy publishing. */ +/* That's all, stop editing! Happy publishing. */ /** Absolute path to the WordPress directory. */ if ( ! defined( 'ABSPATH' ) ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index dffa7f056e..88ab383617 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.8-alpha-50945'; +$wp_version = '5.8-alpha-50946'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.