Ticket #57121: 57121.diff
File 57121.diff, 1.3 KB (added by , 2 years ago) |
---|
-
src/wp-includes/pluggable.php
2404 2404 static $duplicated_keys; 2405 2405 if ( null === $duplicated_keys ) { 2406 2406 $duplicated_keys = array( 2407 'put your unique phrase here' => true, 2408 /* 2409 * translators: This string should only be translated if wp-config-sample.php is localized. 2410 * You can check the localized release package or 2411 * https://i18n.svn.wordpress.org/<locale code>/branches/<wp version>/dist/wp-config-sample.php 2412 */ 2413 __( 'put your unique phrase here' ) => true, 2407 'put your unique phrase here' => true, 2414 2408 ); 2409 2410 /* 2411 * translators: This string should only be translated if wp-config-sample.php is localized. 2412 * You can check the localized release package or 2413 * https://i18n.svn.wordpress.org/<locale code>/branches/<wp version>/dist/wp-config-sample.php 2414 */ 2415 $duplicated_keys[ __( 'put your unique phrase here' ) ] = true; 2416 2415 2417 foreach ( array( 'AUTH', 'SECURE_AUTH', 'LOGGED_IN', 'NONCE', 'SECRET' ) as $first ) { 2416 2418 foreach ( array( 'KEY', 'SALT' ) as $second ) { 2417 2419 if ( ! defined( "{$first}_{$second}" ) ) {