Changeset 6471
- Timestamp:
- 12/23/2007 12:58:06 AM (17 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-config-sample.php
r6387 r6471 7 7 define('DB_CHARSET', 'utf8'); 8 8 define('DB_COLLATE', ''); 9 10 // Change SECRET_KEY to a unique phrase. You won't have to remember it later, 11 // so make it long and complicated. You can visit https://www.grc.com/passwords.htm 12 // to get a phrase generated for you. 9 13 define('SECRET_KEY', ''); // Change this to a unique phrase. 10 14 -
trunk/wp-includes/pluggable.php
r6430 r6471 337 337 $expired = $expiration; 338 338 339 // Allow a grace period for POST requests340 if ( 'POST' == $_SERVER['REQUEST_METHOD'] )339 // Allow a grace period for POST and AJAX requests 340 if ( defined('DOING_AJAX') || 'POST' == $_SERVER['REQUEST_METHOD'] ) 341 341 $expired += 3600; 342 342 … … 700 700 if ( !function_exists('wp_salt') ) : 701 701 function wp_salt() { 702 703 if ( defined('SECRET_KEY') && '' != SECRET_KEY ) 704 return SECRET_KEY; 705 702 706 $salt = get_option('secret'); 703 707 if ( empty($salt) ) { … … 706 710 } 707 711 708 if ( !defined('SECRET_KEY') || '' == SECRET_KEY ) 709 $secret_key = DB_PASSWORD . DB_USER . DB_NAME . DB_HOST . ABSPATH; 710 else 711 $secret_key = SECRET_KEY; 712 713 return $salt . $secret_key; 712 return $salt; 714 713 } 715 714 endif;
Note: See TracChangeset
for help on using the changeset viewer.