diff --git a/wp-includes/pluggable.php b/wp-includes/pluggable.php index db8b55acbf..696f1e74bd 100644 --- a/wp-includes/pluggable.php +++ b/wp-includes/pluggable.php @@ -2417,14 +2417,16 @@ if ( ! function_exists( 'wp_salt' ) ) : static $duplicated_keys; if ( null === $duplicated_keys ) { $duplicated_keys = array( - 'put your unique phrase here' => true, - /* - * translators: This string should only be translated if wp-config-sample.php is localized. - * You can check the localized release package or - * https://i18n.svn.wordpress.org//branches//dist/wp-config-sample.php - */ - __( 'put your unique phrase here' ) => true, + 'put your unique phrase here' => true, ); + + /* + * translators: This string should only be translated if wp-config-sample.php is localized. + * You can check the localized release package or + * https://i18n.svn.wordpress.org//branches//dist/wp-config-sample.php + */ + $duplicated_keys[ __( 'put your unique phrase here' ) ] = true; + foreach ( array( 'AUTH', 'SECURE_AUTH', 'LOGGED_IN', 'NONCE', 'SECRET' ) as $first ) { foreach ( array( 'KEY', 'SALT' ) as $second ) { if ( ! defined( "{$first}_{$second}" ) ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 51f154a93a..e5314d8af5 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.2-beta3-55432'; +$wp_version = '6.2-beta3-55433'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.