diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-03-28 19:42:35 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-03-28 19:42:35 +0000 |
| commit | d778536f126953a704ce50b17c9cbdf80bbc3088 (patch) | |
| tree | 30e8c78066996200e5dad7cdad12486b3f475332 /roundcubemail/index.php | |
| parent | fe6712da460a407e25ba0eb4f65b348f3426a20c (diff) | |
Disable installer by default; add config option to enable it again
git-svn-id: https://svn.roundcube.net/trunk@1222 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/index.php')
| -rw-r--r-- | roundcubemail/index.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/index.php b/roundcubemail/index.php index 7d12d9d77..0687763da 100644 --- a/roundcubemail/index.php +++ b/roundcubemail/index.php @@ -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> |
