From 2597c1b9461895554dfe65b259b65f4f73390863 Mon Sep 17 00:00:00 2001 From: Aaron Jorbin Date: Tue, 17 Sep 2024 23:58:13 +0000 Subject: [PATCH] Bootstrap/Load: Add documentation warning about updating `$table_prefix`. Props bjerke-johannessen, swissspidy, SergeyBiryukov, morganestes, stevenlinx, jorbin. Fixes #34189. Built from https://develop.svn.wordpress.org/trunk@59044 git-svn-id: http://core.svn.wordpress.org/trunk@58440 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-config-sample.php | 6 ++++++ wp-includes/version.php | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/wp-config-sample.php b/wp-config-sample.php index bdea5cd755..039c16f696 100644 --- a/wp-config-sample.php +++ b/wp-config-sample.php @@ -64,6 +64,12 @@ define( 'NONCE_SALT', 'put your unique phrase here' ); * * You can have multiple installations in one database if you give each * a unique prefix. Only numbers, letters, and underscores please! + * + * At the installation time, DB tables names with $table_prefix are created. + * Changing this value after WordPress is installed will make your site think + * it has not been installed. + * + * @link https://developer.wordpress.org/advanced-administration/wordpress/wp-config/#table-prefix */ $table_prefix = 'wp_'; diff --git a/wp-includes/version.php b/wp-includes/version.php index 2642de4c9a..156116d50c 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.7-alpha-59043'; +$wp_version = '6.7-alpha-59044'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.