From a3644638aaf0418598196a870204e0b632a4c8ad Mon Sep 17 00:00:00 2001
From: Thomas Bruederli <thomas@roundcube.net>
Date: Fri, 17 Apr 2015 06:28:40 -0400
Subject: [PATCH] Allow preference sections to define CSS class names

---
 installer/config.php |    9 +++++----
 1 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/installer/config.php b/installer/config.php
index 82d7f55..7e69603 100644
--- a/installer/config.php
+++ b/installer/config.php
@@ -680,10 +680,11 @@
 $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>';
+    $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>';
 }
 
 ?>

--
Gitblit v1.9.1