diff options
-rw-r--r-- | ipsectools-status-html.lsp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ipsectools-status-html.lsp b/ipsectools-status-html.lsp index b74f5d5..ff59def 100644 --- a/ipsectools-status-html.lsp +++ b/ipsectools-status-html.lsp @@ -30,8 +30,8 @@ for k,v in pairs(myform) do io.write("<TR><TD COLSPAN=2 CLASS='header'>Phase1 details</TD></TR>") local tags = {"Created","Source", "St", "S", "E",} for k1,v1 in pairs(tags) do - io.write("<TR><TD STYLE='font-weight:bold;width:120px;'>" .. - (v[v1]['label'] or "") .. "</TD><TD>"..(v[v1]['value'] or "")) + io.write("<TR><TD STYLE='font-weight:bold;width:120px;border:none;'>" .. + (v[v1]['label'] or "") .. "</TD><TD STYLE='border:none;'>"..(v[v1]['value'] or "")) if (v[v1]['descr']) and (#v[v1]['descr'] > 0) then io.write(" (".. v[v1]['descr'] .. ")") end io.write("</TD></TR>") end |