Aleksander Machniak
2015-08-25 bb7817022316d03b425023fae4198fcb8b1c772a
installer/config.php
@@ -85,7 +85,7 @@
?>
<div>Provide an URL where a user can get support for this Roundcube installation.<br/>PLEASE DO NOT LINK TO THE ROUNDCUBE.NET WEBSITE HERE!</div>
<p class="hint">Enter an absolute URL (inculding http://) to a support page/form or a mailto: link.</p>
<p class="hint">Enter an absolute URL (including http://) to a support page/form or a mailto: link.</p>
</dd>
<dt class="propname">skin_logo</dt>
@@ -678,17 +678,19 @@
<?php
$plugins = $RCI->list_plugins();
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']));
   echo '<label for="cfgplugin_'.$p['name'].'">'.$p['desc'].'</label><br/></dd>';
foreach($plugins as $p)
{
    $p_check = new html_checkbox(array('name' => '_plugins_'.$p['name'], 'id' => 'cfgplugin_'.$p['name'], 'value' => $p['name']));
    echo '<dt class="propname"><label>';
    echo $p_check->show($p['enabled'] ? $p['name'] : 0);
    echo '&nbsp;' . $p['name'] . '</label></dt><dd>';
    echo '<label for="cfgplugin_'.$p['name'].'" class="hint">' . $p['desc'] . '</label><br/></dd>';
}
?>
</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