From b737021a905a33c8eb4331692475cca7791e533c Mon Sep 17 00:00:00 2001 From: Thomas Bruederli Date: Sat, 27 Dec 2014 14:53:21 +0100 Subject: Improve plugin selection in installer; check already selected plugins --- installer/config.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'installer') diff --git a/installer/config.php b/installer/config.php index 82d7f55d6..7e69603fc 100644 --- a/installer/config.php +++ b/installer/config.php @@ -680,10 +680,11 @@ echo $select_param_folding->show(strval($RCI->getprop('mime_param_folding'))); $plugins = $RCI->list_plugins(); foreach($plugins as $p) { - $p_check = new html_checkbox(array('name' => '_plugins_'.$p['name'], 'id' => 'cfgplugin_'.$p['name'])); - echo '
'.$p['name'].'
'; - echo $p_check->show(0, array('value' => $p['name'])); - echo '
'; + $p_check = new html_checkbox(array('name' => '_plugins_'.$p['name'], 'id' => 'cfgplugin_'.$p['name'], 'value' => $p['name'])); + echo '
'; + echo '
'; } ?> -- cgit v1.2.3