diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-04-19 09:28:36 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-04-19 09:28:36 +0200 |
commit | 1b7b6be959fc7ef4952a3d5f8fde917b0264ac81 (patch) | |
tree | e3f78f50ce25a31977824722d536a72fb27e74aa /installer | |
parent | 3a81af385f0e032c9d7209798512018ae811ffc7 (diff) |
Fix list of required configuration options (#1489055). Removed support_url, and db_table_*
Diffstat (limited to 'installer')
-rw-r--r-- | installer/rcube_install.php | 3 | ||||
-rw-r--r-- | installer/test.php | 10 |
2 files changed, 6 insertions, 7 deletions
diff --git a/installer/rcube_install.php b/installer/rcube_install.php index a6ded7d9b..b86ccab02 100644 --- a/installer/rcube_install.php +++ b/installer/rcube_install.php @@ -46,8 +46,7 @@ class rcube_install // these config options are required for a working system var $required_config = array( - 'db_dsnw', 'db_table_contactgroups', 'db_table_contactgroupmembers', - 'des_key', 'session_lifetime', 'support_url', + 'db_dsnw', 'des_key', 'session_lifetime', ); // list of supported database drivers diff --git a/installer/test.php b/installer/test.php index bd49ac523..340fe267d 100644 --- a/installer/test.php +++ b/installer/test.php @@ -38,13 +38,13 @@ if ($RCI->configured && ($messages = $RCI->check_config())) { if (is_array($messages['missing'])) { echo '<h3 class="warning">Missing config options</h3>'; - echo '<p class="hint">The following config options are not present in the current configuration.<br/>'; - echo 'Please check the default config files and add the missing properties to your local config files.</p>'; - - echo '<ul class="configwarings">'; + echo '<p class="hint">The following config options are not set (not present or empty) in the current configuration.<br/>'; + echo 'Please check the default config files and set the missing properties in your local config files.</p>'; + + echo '<ul class="configwarnings">'; foreach ($messages['missing'] as $msg) { echo html::tag('li', null, html::span('propname', $msg['prop']) . ($msg['name'] ? ': ' . $msg['name'] : '')); - } + } echo '</ul>'; } |