diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-04-08 17:43:26 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-04-08 17:43:26 +0000 |
| commit | 43871a064f1879a493b357e89d9522ef72693f3c (patch) | |
| tree | cd933061b6b3be7704882f20451a73003da4c9d0 | |
| parent | c77a354b0f950a250c8460ecef58d94805d28495 (diff) | |
Don't attempt to send headers after content
git-svn-id: https://svn.roundcube.net/trunk@1271 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/installer/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/installer/index.php b/roundcubemail/installer/index.php index 446b6a4e3..cb5f3febd 100644 --- a/roundcubemail/installer/index.php +++ b/roundcubemail/installer/index.php @@ -42,7 +42,7 @@ session_start(); // exit if installation is complete if ($RCI->configured && !$RCI->getprop('enable_installer') && !$_SESSION['allowinstaller']) { - header("HTTP/1.0 404 Not Found"); + // header("HTTP/1.0 404 Not Found"); echo '<h2 class="error">The installer is disabled!</h2>'; echo '<p>To enable it again, set <tt>$rcmail_config[\'enable_installer\'] = true;</tt> in config/main.inc.php</p>'; echo '</div></body></html>'; |
