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

git-svn-id: http://svn.automattic.com/wordpress/trunk@12663 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2010-01-08 18:40:00 +00:00
parent 26ade42134
commit 28677c6b00
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>