diff options
Diffstat (limited to 'dhcp-status-html.lsp')
-rw-r--r-- | dhcp-status-html.lsp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/dhcp-status-html.lsp b/dhcp-status-html.lsp index d68a5fe..e13dcda 100644 --- a/dhcp-status-html.lsp +++ b/dhcp-status-html.lsp @@ -1,6 +1,6 @@ -<? local form = ... ?> +<% local form = ... %> -<? +<% function displayinfo(myform,tags,viewonly) for k,v in pairs(tags) do if (myform[v]) and (myform[v]["value"]) then @@ -22,15 +22,15 @@ function displayinfo(myform,tags,viewonly) end end end -?> +%> <H1>SYSTEM INFO</H1> <DL> -<? +<% local myform = form.info local tags = { "status", "version", "autostart", } displayinfo(myform,tags,"viewonly") -?> +%> </DL> |