wp_htmledit_pre for salts in wp-admin/network. fixes #15092.

git-svn-id: https://develop.svn.wordpress.org/trunk@15965 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2010-10-26 03:36:23 +00:00
parent f48506bb8f
commit f7345eb522
1 changed files with 1 additions and 1 deletions

View File

@ -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