summaryrefslogtreecommitdiff
path: root/installer/index.php
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2008-04-08 17:43:26 +0000
committerthomascube <thomas@roundcube.net>2008-04-08 17:43:26 +0000
commite010845509c357982975c1233e1a93b788791e58 (patch)
tree6a744c55ba13ab5673201bd803b3b7da910b6424 /installer/index.php
parent8b8bccf390e6714b65b8907cd399032cbdcbebdb (diff)
Don't attempt to send headers after content
Diffstat (limited to 'installer/index.php')
-rw-r--r--installer/index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/installer/index.php b/installer/index.php
index 446b6a4e3..cb5f3febd 100644
--- a/installer/index.php
+++ b/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>';