diff options
Diffstat (limited to 'tinydns-html.lsp')
-rw-r--r-- | tinydns-html.lsp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tinydns-html.lsp b/tinydns-html.lsp index a135d3b..b900ea4 100644 --- a/tinydns-html.lsp +++ b/tinydns-html.lsp @@ -1,5 +1,5 @@ <% local form, viewlibrary, page_info = ... -require("viewfunctions") +require("htmlviewfunctions") %> <H1><%= html.html_escape(form.label) %></H1> @@ -8,5 +8,5 @@ require("viewfunctions") if form.value.userid then form.value.userid.readonly = true end if form.value.role then form.value.role.readonly = true end local order = { "userid", "role" } - displayform(form, order) + htmlviewfunctions.displayform(form, order) %> |