diff options
author | thomascube <thomas@roundcube.net> | 2008-03-28 19:42:35 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-03-28 19:42:35 +0000 |
commit | 967b342039261ab294fe85d806fe49ce16391ada (patch) | |
tree | 92025c37144c671aad5d297d7967b165cfd140f7 /index.php | |
parent | 1b7ac67161a967d2c1c51b9adf109e7da0231999 (diff) |
Disable installer by default; add config option to enable it again
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2,7 +2,7 @@ /* +-----------------------------------------------------------------------+ | RoundCube Webmail IMAP Client | - | Version 0.1-20080314 | + | Version 0.1-20080328 | | | | Copyright (C) 2005-2008, RoundCube Dev. - Switzerland | | Licensed under the GNU GPL | @@ -245,7 +245,7 @@ if (!empty($_action)) if (empty($USER->ID)) { // check if installer is still active - if (!$CONFIG['installer_disable_warning'] && is_readable('./installer/index.php')) + if ($CONFIG['enable_installer'] && is_readable('./installer/index.php')) $OUTPUT->add_footer(' <div style="background:#ef9398; border:2px solid #dc5757; padding:0.5em; margin:2em auto; width:50em"> <h2 style="margin-top:0.2em">Installer script is still accessible</h2> |