Changeset 6471 for trunk/wp-includes/pluggable.php
- Timestamp:
- 12/23/2007 12:58:06 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.