Changeset 6982
- Timestamp:
- 02/22/2008 05:36:09 PM (17 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/pluggable.php
r6946 r6982 1017 1017 */ 1018 1018 function wp_salt() { 1019 1019 global $wp_default_secret_key; 1020 1020 $secret_key = ''; 1021 if ( defined('SECRET_KEY') && ('' != SECRET_KEY) && ( 'put your unique phrase here'!= SECRET_KEY) )1021 if ( defined('SECRET_KEY') && ('' != SECRET_KEY) && ( $wp_default_secret_key != SECRET_KEY) ) 1022 1022 $secret_key = SECRET_KEY; 1023 1023 -
trunk/wp-settings.php
r6952 r6982 277 277 278 278 /** 279 * Should be exactly the same as the default value of SECRET_KEY in wp-config-sample.php 280 * @since 2.5 281 */ 282 $wp_default_secret_key = 'put your unique phrase here'; 283 284 /** 279 285 * It is possible to define this in wp-config.php 280 286 * @since 2.0.0
Note: See TracChangeset
for help on using the changeset viewer.