diff options
Diffstat (limited to 'dhcp-edithost-html.lsp')
-rw-r--r-- | dhcp-edithost-html.lsp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dhcp-edithost-html.lsp b/dhcp-edithost-html.lsp index 6cf60fb..289bcdc 100644 --- a/dhcp-edithost-html.lsp +++ b/dhcp-edithost-html.lsp @@ -1,5 +1,5 @@ <% local form, viewlibrary, page_info = ... -require("viewfunctions") +require("htmlviewfunctions") %> <H1><%= html.html_escape(form.label) %></H1> @@ -9,5 +9,5 @@ require("viewfunctions") form.value.host.readonly = true end local order = {"host", "mac", "ip"} - displayform(form, order) + htmlviewfunctions.displayform(form, order) %> |