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 775b102..d3db3b4 100644 --- a/app/debug-html.lsp +++ b/app/debug-html.lsp @@ -1,8 +1,8 @@ -<? local data, viewlibrary, page_info, session = ... ?> +<% local data, viewlibrary, page_info, session = ... %> <H1>Debugging</H1> <H2>View Data:</H2> -<?= html.cfe_unpack(data) ?> +<%= html.cfe_unpack(data) %> <H2>Session:</H2> -<?= html.cfe_unpack(session) ?> +<%= html.cfe_unpack(session) %> <H2>Page Info:</H2> -<?= html.cfe_unpack(page_info) ?> +<%= html.cfe_unpack(page_info) %> |