Don't break UTF-8 strings in setup-config.php. Props SergeyBiryukov fixes #11821

git-svn-id: https://develop.svn.wordpress.org/trunk@12663 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2010-01-08 18:40:00 +00:00
parent 70c55846ac
commit f121906d10
1 changed files with 2 additions and 3 deletions

View File

@ -19,8 +19,7 @@ define('WP_INSTALLING', true);
/**
* Disable error reporting
*
* Set this to error_reporting( E_ALL ) or error_reporting( E_ALL | E_STRICT ) f
or debugging
* Set this to error_reporting( E_ALL ) or error_reporting( E_ALL | E_STRICT ) for debugging
*/
error_reporting(0);
@ -192,7 +191,7 @@ switch($step) {
<p>You can create the <code>wp-config.php</code> manually and paste the following text into it.</p>
<textarea cols="90" rows="15"><?php
foreach( $configFile as $line ) {
echo htmlentities($line);
echo htmlentities($line, ENT_COMPAT, 'UTF-8');
}
?></textarea>
<p>After you've done that, click "Run the install."</p>