Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/roundcube/roundcubemail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlanpy <none@none.com>2014-11-12 13:24:34 +0300
committerFlanpy <none@none.com>2014-11-12 13:24:34 +0300
commit8f576d87d23be5f170054a8454b7917ae64f5696 (patch)
tree987557e33bbd042adcff5e4b1a7476b5bcfe8523 /installer
parentb8837e3f43aac8ed64d52d9046a6822521fb1fe1 (diff)
Add the ability to select plugins in the installer
Diffstat (limited to 'installer')
-rw-r--r--installer/config.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/installer/config.php b/installer/config.php
index 590bbe0e7..82d7f55d6 100644
--- a/installer/config.php
+++ b/installer/config.php
@@ -678,7 +678,8 @@ echo $select_param_folding->show(strval($RCI->getprop('mime_param_folding')));
<?php
$plugins = $RCI->list_plugins();
-foreach($plugins as $p) {
+foreach($plugins as $p)
+{
$p_check = new html_checkbox(array('name' => '_plugins_'.$p['name'], 'id' => 'cfgplugin_'.$p['name']));
echo '<dt class="propname">'.$p['name'].'</dt><dd>';
echo $p_check->show(0, array('value' => $p['name']));
@@ -688,7 +689,7 @@ foreach($plugins as $p) {
?>
</dl>
-<p class="hint">Before enabling any plugin, check their dependencies</p>
+<p class="hint">Please consider checking dependencies of enabled plugins</p>
</fieldset>
<?php