Changeset 59434
- Timestamp:
- 11/20/2024 01:51:21 PM (11 days ago)
- Location:
- branches/6.7
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/6.7
-
branches/6.7/src/wp-includes/pluggable.php
r59128 r59434 2480 2480 static $duplicated_keys; 2481 2481 if ( null === $duplicated_keys ) { 2482 $duplicated_keys = array( 2483 'put your unique phrase here' => true, 2484 ); 2485 2486 /* 2487 * translators: This string should only be translated if wp-config-sample.php is localized. 2488 * You can check the localized release package or 2489 * https://i18n.svn.wordpress.org/<locale code>/branches/<wp version>/dist/wp-config-sample.php 2490 */ 2491 $duplicated_keys[ __( 'put your unique phrase here' ) ] = true; 2482 $duplicated_keys = array(); 2492 2483 2493 2484 foreach ( array( 'AUTH', 'SECURE_AUTH', 'LOGGED_IN', 'NONCE', 'SECRET' ) as $first ) { … … 2500 2491 } 2501 2492 } 2493 2494 $duplicated_keys['put your unique phrase here'] = true; 2495 2496 /* 2497 * translators: This string should only be translated if wp-config-sample.php is localized. 2498 * You can check the localized release package or 2499 * https://i18n.svn.wordpress.org/<locale code>/branches/<wp version>/dist/wp-config-sample.php 2500 */ 2501 $duplicated_keys[ __( 'put your unique phrase here' ) ] = true; 2502 2502 } 2503 2503
Note: See TracChangeset
for help on using the changeset viewer.