summaryrefslogtreecommitdiffstats
path: root/shorewall-html.lsp
diff options
context:
space:
mode:
Diffstat (limited to 'shorewall-html.lsp')
-rw-r--r--shorewall-html.lsp12
1 files changed, 10 insertions, 2 deletions
diff --git a/shorewall-html.lsp b/shorewall-html.lsp
index 1672808..7f99407 100644
--- a/shorewall-html.lsp
+++ b/shorewall-html.lsp
@@ -78,7 +78,15 @@ displayinfo(myform,tags)
?>
<? -- Add the field that holds the filename
-local myform = form.edit.file
+local myform = form.edit.filename
+if (type(myform) == "table") then
+ io.write(html.form[myform.type](myform))
+end
+local myform = form.edit.orgrecord
+if (type(myform) == "table") then
+ io.write(html.form[myform.type](myform))
+end
+local myform = form.edit.actiontype
if (type(myform) == "table") then
io.write(html.form[myform.type](myform))
end
@@ -89,7 +97,7 @@ end
</form>
<?
----[[ DEBUG INFORMATION
+--[[ DEBUG INFORMATION
io.write("<H1>DEBUGGING</H1><span style='color:red'><H2>DEBUG INFO: CFE</H2>")
io.write(html.cfe_unpack(form))
io.write("</span>")