Changeset 33734 for trunk/src/wp-admin/setup-config.php
- Timestamp:
- 08/25/2015 08:27:56 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/setup-config.php
r32654 r33734 310 310 <p><?php _e( 'You can create the <code>wp-config.php</code> manually and paste the following text into it.' ); ?></p> 311 311 <textarea id="wp-config" cols="98" rows="15" class="code" readonly="readonly"><?php 312 foreach ( $config_file as $line ) {312 foreach ( $config_file as $line ) { 313 313 echo htmlentities($line, ENT_COMPAT, 'UTF-8'); 314 314 } … … 337 337 338 338 $handle = fopen( $path_to_wp_config, 'w' ); 339 foreach ( $config_file as $line ) {339 foreach ( $config_file as $line ) { 340 340 fwrite( $handle, $line ); 341 341 }
Note: See TracChangeset
for help on using the changeset viewer.