diff options
Diffstat (limited to 'app/acf-util/password-html.lsp')
-rw-r--r-- | app/acf-util/password-html.lsp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/acf-util/password-html.lsp b/app/acf-util/password-html.lsp index 82551fc..bc50fb7 100644 --- a/app/acf-util/password-html.lsp +++ b/app/acf-util/password-html.lsp @@ -1,5 +1,5 @@ <% local form, viewlibrary, pageinfo = ... %> -<% require("viewfunctions") %> +<% require("htmlviewfunctions") %> <H1><%= html.html_escape(form.label) %></H1> <% @@ -12,5 +12,5 @@ form.value.userid.readonly = true end local order = { "userid", "username", "roles", "password", "password_confirm" } - displayform(form, order) + htmlviewfunctions.displayform(form, order) %> |