diff options
Diffstat (limited to 'dnscache-editdomain-html.lsp')
-rw-r--r-- | dnscache-editdomain-html.lsp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dnscache-editdomain-html.lsp b/dnscache-editdomain-html.lsp index e0fbb11..dd1ee4e 100644 --- a/dnscache-editdomain-html.lsp +++ b/dnscache-editdomain-html.lsp @@ -1,5 +1,5 @@ <% local form, viewlibrary, page_info = ... -require("viewfunctions") +require("htmlviewfunctions") %> <H1><%= html.html_escape(form.label) %></H1> @@ -7,5 +7,5 @@ require("viewfunctions") form.action = page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action form.value.domain.readonly = true local order = { "domain", "iplist" } - displayform(form, order) + htmlviewfunctions.displayform(form, order) %> |