diff options
Diffstat (limited to 'openssl-checkenvironment-html.lsp')
-rw-r--r-- | openssl-checkenvironment-html.lsp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/openssl-checkenvironment-html.lsp b/openssl-checkenvironment-html.lsp index 0ea7a1e..1b68f14 100644 --- a/openssl-checkenvironment-html.lsp +++ b/openssl-checkenvironment-html.lsp @@ -1,16 +1,16 @@ <% local form, viewlibrary, page_info = ... %> -<% require("viewfunctions") %> +<% require("htmlviewfunctions") %> <H1><%= html.html_escape(form.label) %></H1> <% if form.value.status.errtxt then form.action = page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action - displayformstart(form) + htmlviewfunctions.displayformstart(form) else %> <DL> <% end %> -<% displayitem(form.value.status) %> +<% htmlviewfunctions.displayitem(form.value.status) %> <% if form.value.status.errtxt then - displayformend(form) + htmlviewfunctions.displayformend(form) else %> </DL> <% end %> |