diff options
Diffstat (limited to 'app/debug-html.lsp')
-rw-r--r-- | app/debug-html.lsp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/debug-html.lsp b/app/debug-html.lsp index f9d160b..ee49434 100644 --- a/app/debug-html.lsp +++ b/app/debug-html.lsp @@ -1,9 +1,9 @@ <% local data, viewlibrary, page_info, session = ... %> -<% require("viewfunctions") %> +<% require("htmlviewfunctions") %> <H1>Debugging</H1> <H2>View Data:</H2> -<%= cfe_unpack(data) %> +<%= htmlviewfunctions.cfe_unpack(data) %> <H2>Session:</H2> -<%= cfe_unpack(session) %> +<%= htmlviewfunctions.cfe_unpack(session) %> <H2>Page Info:</H2> -<%= cfe_unpack(page_info) %> +<%= htmlviewfunctions.cfe_unpack(page_info) %> |