diff options
| author | donncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36> | 2008-07-21 15:55:54 +0000 |
|---|---|---|
| committer | donncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36> | 2008-07-21 15:55:54 +0000 |
| commit | 2e4a2003485fcc5d0220942eb404d7dc60a54b7a (patch) | |
| tree | adb1e71737482096730f124779d832e4ba5bb0c5 | |
| parent | e46b68482095f5e9d0f74ae6f639c5dbe505a727 (diff) | |
Added "SECURE_AUTH_SALT" constant so sitewide ssl logins work
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@1388 7be80a69-a1ef-0310-a953-fb0f7c49ff36
| -rw-r--r-- | wp-admin/includes/mu.php | 2 | ||||
| -rw-r--r-- | wp-config-sample.php | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/wp-admin/includes/mu.php b/wp-admin/includes/mu.php index 746cdcd..06c2f25 100644 --- a/wp-admin/includes/mu.php +++ b/wp-admin/includes/mu.php @@ -663,7 +663,7 @@ remove_action( 'media_buttons', 'media_buttons' ); function secret_salt_warning() { if( !is_site_admin() ) return; - $secret_keys = array( 'SECRET_KEY', 'SECRET_SALT', 'LOGGED_IN_KEY', 'LOGGED_IN_SALT', 'AUTH_KEY', 'SECURE_AUTH_KEY' ); + $secret_keys = array( 'SECRET_KEY', 'SECRET_SALT', 'LOGGED_IN_KEY', 'LOGGED_IN_SALT', 'AUTH_KEY', 'SECURE_AUTH_KEY', 'SECURE_AUTH_SALT' ); $out = ''; foreach( $secret_keys as $key ) { if( !defined( $key ) ) diff --git a/wp-config-sample.php b/wp-config-sample.php index b622897..199da41 100644 --- a/wp-config-sample.php +++ b/wp-config-sample.php @@ -15,6 +15,7 @@ $base = 'BASE'; // to get keys generated for you, or just make something up. Each key should have a different phrase.
define('AUTH_KEY', 'put your unique phrase here'); // Change this to a unique phrase.
define('SECURE_AUTH_KEY', 'put your unique phrase here'); // Change this to a unique phrase.
+define('SECURE_AUTH_SALT', 'put your unique phrase here'); // Change this to a unique phrase.
define('LOGGED_IN_KEY', 'put your unique phrase here'); // Change this to a unique phrase.
define('SECRET_KEY', 'put your unique phrase here'); // Change these to unique phrases.
define('SECRET_SALT', 'put your unique phrase here');
|
