Changeset 42672
- Timestamp:
- 02/08/2018 10:57:28 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/setup-config.php
r42343 r42672 399 399 /* translators: %s: wp-config.php */ 400 400 printf( __( 'You can create the %s file manually and paste the following text into it.' ), '<code>wp-config.php</code>' ); 401 402 $config_text = ''; 403 404 foreach ( $config_file as $line ) { 405 $config_text .= htmlentities( $line, ENT_COMPAT, 'UTF-8' ); 406 } 401 407 ?> 402 408 </p> 403 <textarea id="wp-config" cols="98" rows="15" class="code" readonly="readonly"> 404 <?php 405 foreach ( $config_file as $line ) { 406 echo htmlentities( $line, ENT_COMPAT, 'UTF-8' ); 407 } 408 ?> 409 </textarea> 409 <textarea id="wp-config" cols="98" rows="15" class="code" readonly="readonly"><?php echo $config_text; ?></textarea> 410 410 <p><?php _e( 'After you’ve done that, click “Run the installation.”' ); ?></p> 411 411 <p class="step"><a href="<?php echo $install; ?>" class="button button-large"><?php _e( 'Run the installation' ); ?></a></p>
Note: See TracChangeset
for help on using the changeset viewer.