Index: trunk/phase3/config/Installer.php |
— | — | @@ -1736,7 +1736,7 @@ |
1737 | 1737 | function writeSuccessMessage() { |
1738 | 1738 | $script = defined('MW_INSTALL_PHP5_EXT') ? 'index.php5' : 'index.php'; |
1739 | 1739 | if ( wfIniGetBool( 'safe_mode' ) && !ini_get( 'open_basedir' ) ) { |
1740 | | - echo <<<EOT |
| 1740 | + echo <<<HTML |
1741 | 1741 | <div class="success-box"> |
1742 | 1742 | <p>Installation successful!</p> |
1743 | 1743 | <p>To complete the installation, please do the following: |
— | — | @@ -1751,9 +1751,9 @@ |
1752 | 1752 | which means that anyone on the same server can read your database password! Downloading |
1753 | 1753 | it and uploading it again will hopefully change the ownership to a user ID specific to you.</p> |
1754 | 1754 | </div> |
1755 | | -EOT; |
| 1755 | +HTML; |
1756 | 1756 | } else { |
1757 | | - echo <<<EOT |
| 1757 | + echo <<<HTML |
1758 | 1758 | <div class="success-box"> |
1759 | 1759 | <p> |
1760 | 1760 | <span class="success-message">Installation successful!</span> |
— | — | @@ -1762,7 +1762,7 @@ |
1763 | 1763 | <p>You should change file permissions for <tt>LocalSettings.php</tt> as required to |
1764 | 1764 | prevent other users on the server reading passwords and altering configuration data.</p> |
1765 | 1765 | </div> |
1766 | | -EOT; |
| 1766 | +HTML; |
1767 | 1767 | } |
1768 | 1768 | } |
1769 | 1769 | |