diff --git a/wp-admin/includes/ms.php b/wp-admin/includes/ms.php
index 6f59dd6570..958b350fff 100644
--- a/wp-admin/includes/ms.php
+++ b/wp-admin/includes/ms.php
@@ -503,26 +503,6 @@ function mu_dropdown_languages( $lang_files = array(), $current = '' ) {
echo implode( "\n\t", $output );
}
-/* Warn the admin if SECRET SALT information is missing from wp-config.php */
-function secret_salt_warning() {
- if ( !is_super_admin() )
- return;
- $secret_keys = array( 'AUTH_KEY', 'SECURE_AUTH_KEY', 'LOGGED_IN_KEY', 'NONCE_KEY', 'AUTH_SALT', 'SECURE_AUTH_SALT', 'LOGGED_IN_SALT', 'NONCE_SALT' );
- $out = '';
- foreach( $secret_keys as $key ) {
- if ( ! defined( $key ) )
- $out .= "define( '$key', '" . esc_html( wp_generate_password( 64, true, true ) ) . "' );
";
- }
- if ( $out != '' ) {
- $msg = __( 'Warning! WordPress encrypts user cookies, but you must add the following lines to wp-config.php for it to be more secure.' );
- $msg .= '
' . __( "Before the line /* That's all, stop editing! Happy blogging. */
please add this code:" );
- $msg .= "$out
";
-
- echo "