Changeset 1388
- Timestamp:
- 07/21/08 15:55:54 (5 months ago)
- Files:
-
- trunk/wp-admin/includes/mu.php (modified) (1 diff)
- trunk/wp-config-sample.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-admin/includes/mu.php
r1361 r1388 664 664 if( !is_site_admin() ) 665 665 return; 666 $secret_keys = array( 'SECRET_KEY', 'SECRET_SALT', 'LOGGED_IN_KEY', 'LOGGED_IN_SALT', 'AUTH_KEY', 'SECURE_AUTH_KEY' );666 $secret_keys = array( 'SECRET_KEY', 'SECRET_SALT', 'LOGGED_IN_KEY', 'LOGGED_IN_SALT', 'AUTH_KEY', 'SECURE_AUTH_KEY', 'SECURE_AUTH_SALT' ); 667 667 $out = ''; 668 668 foreach( $secret_keys as $key ) { trunk/wp-config-sample.php
r1377 r1388 16 16 define('AUTH_KEY', 'put your unique phrase here'); // Change this to a unique phrase. 17 17 define('SECURE_AUTH_KEY', 'put your unique phrase here'); // Change this to a unique phrase. 18 define('SECURE_AUTH_SALT', 'put your unique phrase here'); // Change this to a unique phrase. 18 19 define('LOGGED_IN_KEY', 'put your unique phrase here'); // Change this to a unique phrase. 19 20 define('SECRET_KEY', 'put your unique phrase here'); // Change these to unique phrases.
