summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-11-17 06:42:17 +0100
committerAndrew Dolgov <[email protected]>2005-11-17 06:42:17 +0100
commit59a654baece9760330b5dde286fe1e641ce2c880 (patch)
tree2a65c4c8da9211b1b4e515647e560647d685405a
parent4338e23d078b0b747de6987fe5ad848ee2b4c827 (diff)
prefs editor UI changes
-rw-r--r--backend.php12
1 files changed, 9 insertions, 3 deletions
diff --git a/backend.php b/backend.php
index 2a488e88a..ed497f471 100644
--- a/backend.php
+++ b/backend.php
@@ -1573,10 +1573,16 @@
while ($line = db_fetch_assoc($result)) {
if ($active_section != $line["section_name"]) {
- $active_section = $line["section_name"];
+
+ if ($active_section != "") {
+ print "</table><p><table width=\"100%\" class=\"prefPrefsList\">";
+ }
+
+ $active_section = $line["section_name"];
+
print "<tr><td colspan=\"3\"><h3>$active_section</h3></td></tr>";
- print "<tr class=\"title\">
- <td width=\"25%\">Option</td><td>Value</td></tr>";
+// print "<tr class=\"title\">
+// <td width=\"25%\">Option</td><td>Value</td></tr>";
}
$class = ($lnum % 2) ? "even" : "odd";