wp_htmledit_pre for salts in wp-admin/network. fixes #15092.
git-svn-id: http://svn.automattic.com/wordpress/trunk@15965 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
0373c403aa
commit
b68d28a728
|
@ -361,7 +361,7 @@ define( 'BLOG_ID_CURRENT_SITE', 1 );</textarea>
|
|||
echo _n( 'This unique authentication key is also missing from your <code>wp-config.php</code> file.', 'These unique authentication keys are also missing from your <code>wp-config.php</code> file.', $num_keys_salts ); ?> <?php _e( 'To make your installation more secure, you should also add:' ) ?></p>
|
||||
<textarea class="code" readonly="readonly" cols="100" rows="<?php echo $num_keys_salts; ?>"><?php
|
||||
foreach ( $keys_salts as $c => $v ) {
|
||||
echo "\ndefine( '$c', '$v' );";
|
||||
echo "\ndefine( '$c', '" . wp_htmledit_pre( $v ) . "' );";
|
||||
}
|
||||
?></textarea>
|
||||
<?php
|
||||
|
|
Loading…
Reference in New Issue