Changeset 16431 for trunk/wp-admin/network.php
- Timestamp:
- 11/17/2010 05:12:01 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/network.php
r16094 r16431 369 369 <textarea class="code" readonly="readonly" cols="100" rows="<?php echo $num_keys_salts; ?>"><?php 370 370 foreach ( $keys_salts as $c => $v ) { 371 echo "\ndefine( '$c', '" . wp_htmledit_pre( $v ) . "' );";371 echo "\ndefine( '$c', '" . esc_textarea( $v ) . "' );"; 372 372 } 373 373 ?></textarea> … … 457 457 <li><p><?php printf( __( 'Add the following to your <code>web.config</code> file in <code>%s</code>, replacing other WordPress rules:' ), ABSPATH ); ?></p> 458 458 <textarea class="code" readonly="readonly" cols="100" rows="20"> 459 <?php echo wp_htmledit_pre( $web_config_file ); ?>459 <?php echo esc_textarea( $web_config_file ); ?> 460 460 </textarea></li> 461 461 </ol> … … 486 486 <li><p><?php printf( __( 'Add the following to your <code>.htaccess</code> file in <code>%s</code>, replacing other WordPress rules:' ), ABSPATH ); ?></p> 487 487 <textarea class="code" readonly="readonly" cols="100" rows="<?php echo $subdomain_install ? 11 : 16; ?>"> 488 <?php echo wp_htmledit_pre( $htaccess_file ); ?></textarea></li>488 <?php echo esc_textarea( $htaccess_file ); ?></textarea></li> 489 489 </ol> 490 490
Note: See TracChangeset
for help on using the changeset viewer.