Ticket #11821: 11821.diff
| File 11821.diff, 819 bytes (added by , 16 years ago) |
|---|
-
wp-admin/setup-config.php
19 19 /** 20 20 * Disable error reporting 21 21 * 22 * Set this to error_reporting( E_ALL ) or error_reporting( E_ALL | E_STRICT ) f 23 or debugging 22 * Set this to error_reporting( E_ALL ) or error_reporting( E_ALL | E_STRICT ) for debugging 24 23 */ 25 24 error_reporting(0); 26 25 … … 192 191 <p>You can create the <code>wp-config.php</code> manually and paste the following text into it.</p> 193 192 <textarea cols="90" rows="15"><?php 194 193 foreach( $configFile as $line ) { 195 echo htmlentities($line );194 echo htmlentities($line, ENT_COMPAT, 'UTF-8'); 196 195 } 197 196 ?></textarea> 198 197 <p>After you've done that, click "Run the install."</p>