From bf11362dab334a12861ad16cf024fc966bf28137 Mon Sep 17 00:00:00 2001 From: Aaron Jorbin Date: Fri, 14 May 2021 19:35:00 +0000 Subject: [PATCH] Boostrap/Load: Strengthen language in wp-config-sample.php Make it clearer where custom pieces belong in wp-config.php Props kraftbj, jorbin. Fixes #37199. Built from https://develop.svn.wordpress.org/trunk@50915 git-svn-id: http://core.svn.wordpress.org/trunk@50524 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-config-sample.php | 10 +++++++++- wp-includes/version.php | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/wp-config-sample.php b/wp-config-sample.php index bb04ed6986..aa10cf6ced 100644 --- a/wp-config-sample.php +++ b/wp-config-sample.php @@ -79,7 +79,15 @@ $table_prefix = 'wp_'; */ define( 'WP_DEBUG', false ); -/* That's all, stop editing! Happy publishing. */ +/** Add any custom values after this line. */ + + + +/** + * Custom Values must appear above this line. + * + * 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 f1ddd174b0..b25c16ff6e 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.8-alpha-50914'; +$wp_version = '5.8-alpha-50915'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.