Use the correct defines in secret_salt_warning.

git-svn-id: https://develop.svn.wordpress.org/trunk@14329 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2010-05-01 22:50:55 +00:00
parent c4a1082319
commit d5b8eeaa25
1 changed files with 1 additions and 1 deletions

View File

@ -657,7 +657,7 @@ function mu_dropdown_languages( $lang_files = array(), $current = '' ) {
function secret_salt_warning() { function secret_salt_warning() {
if ( !is_super_admin() ) if ( !is_super_admin() )
return; return;
$secret_keys = array( 'AUTH_KEY', 'SECURE_KEY', 'LOGGED_IN_KEY', 'NONCE_KEY', 'AUTH_SALT', 'SECURE_SALT', 'LOGGED_IN_SALT', 'NONCE_SALT' ); $secret_keys = array( 'AUTH_KEY', 'SECURE_AUTH_KEY', 'LOGGED_IN_KEY', 'NONCE_KEY', 'AUTH_SALT', 'SECURE_AUTH_SALT', 'LOGGED_IN_SALT', 'NONCE_SALT' );
$out = ''; $out = '';
foreach( $secret_keys as $key ) { foreach( $secret_keys as $key ) {
if ( ! defined( $key ) ) if ( ! defined( $key ) )