diff options
Diffstat (limited to 'weblog-createdatabase-html.lsp')
-rw-r--r-- | weblog-createdatabase-html.lsp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/weblog-createdatabase-html.lsp b/weblog-createdatabase-html.lsp index 5110adc..372a98d 100644 --- a/weblog-createdatabase-html.lsp +++ b/weblog-createdatabase-html.lsp @@ -1,10 +1,10 @@ <% local form, viewlibrary, page_info = ... %> -<% require("viewfunctions") %> +<% require("htmlviewfunctions") %> <H1><%= html.html_escape(form.label) %></H1> <% form.value.password.type = "password" form.value.password_confirm.type = "password" local order = { "password", "password_confirm" } - displayform(form, order, nil, page_info) + htmlviewfunctions.displayform(form, order, nil, page_info) %> |