summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tinydns-expert-html.lsp3
-rw-r--r--tinydns-status-html.lsp4
2 files changed, 2 insertions, 5 deletions
diff --git a/tinydns-expert-html.lsp b/tinydns-expert-html.lsp
index 83e8bf7..825267b 100644
--- a/tinydns-expert-html.lsp
+++ b/tinydns-expert-html.lsp
@@ -22,8 +22,6 @@ displayinfo(myform,tags,"viewonly")
<h1>CONFIGURATION</h1>
<h2>Expert config</h2>
<h3>Edit/View existing configfiles</h3>
-<DL>
-
<TABLE>
<TR style="background:#eee;font-weight:bold;">
<TD style="padding-right:20px;white-space:nowrap;text-align:left;" class="header">File</TD>
@@ -39,7 +37,6 @@ displayinfo(myform,tags,"viewonly")
</TR>
<? end ?>
</TABLE>
-</DL>
<h3>Create new configfile</h3>
<form action="<?= form.option.script .. "/" .. form.option.prefix ..
diff --git a/tinydns-status-html.lsp b/tinydns-status-html.lsp
index 90b7179..f0288b8 100644
--- a/tinydns-status-html.lsp
+++ b/tinydns-status-html.lsp
@@ -62,8 +62,8 @@ local function recurseoutput(table,cnt)
io.write("\n\t\t\t<TABLE STYLE='margin-left:90px;'>")
for k1,v1 in pairs(v.option) do
if (v1.label) then
- io.write("\n\t\t\t\t<TR>\n\t\t\t\t\t<TD WIDTH='160px' STYLE=''>".. tostring(v1.label) ..
- ":</TD>\n\t\t\t\t\t<TD>".. tostring(v1.value) .."</TD>\n\t\t\t\t</TR>")
+ io.write("\n\t\t\t\t<TR>\n\t\t\t\t\t<TD WIDTH='160px' STYLE='border:none;'>".. tostring(v1.label) ..
+ ":</TD>\n\t\t\t\t\t<TD STYLE='border:none;'>".. tostring(v1.value) .."</TD>\n\t\t\t\t</TR>")
end
end
io.write("\n\t\t\t</TABLE>")