Changeset 20691 for trunk/wp-includes/pluggable.php
- Timestamp:
- 05/02/2012 07:29:39 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/pluggable.php
r20563 r20691 1326 1326 */ 1327 1327 function wp_salt( $scheme = 'auth' ) { 1328 global $wp_secret_key_default; // This is set for localized builds for versions > 3.4.0.1329 1330 1328 static $cached_salts = array(); 1331 1329 if ( isset( $cached_salts[ $scheme ] ) ) … … 1343 1341 } 1344 1342 } 1345 if ( ! empty( $wp_secret_key_default ) )1346 $duplicated_keys[ $wp_secret_key_default ] = true;1347 1343 } 1348 1344
Note: See TracChangeset
for help on using the changeset viewer.