diff options
author | Ted Trask <ttrask01@yahoo.com> | 2009-12-31 14:27:23 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2009-12-31 14:27:23 +0000 |
commit | 9f469a06780e66135cb3da9cfdedb48763931160 (patch) | |
tree | ddcb6f2375c81e90f276f31aa880b2654092603d /app/debug-html.lsp | |
parent | be4063286a0b8f46754c082178517b3c684c3dff (diff) | |
download | acf-core-9f469a06780e66135cb3da9cfdedb48763931160.tar.bz2 acf-core-9f469a06780e66135cb3da9cfdedb48763931160.tar.xz |
Moved non-ACF-specific libraries to acf-lib package, moved cfe_unpack function to viewfunctions library.
Diffstat (limited to 'app/debug-html.lsp')
-rw-r--r-- | app/debug-html.lsp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/app/debug-html.lsp b/app/debug-html.lsp index d3db3b4..f9d160b 100644 --- a/app/debug-html.lsp +++ b/app/debug-html.lsp @@ -1,8 +1,9 @@ <% local data, viewlibrary, page_info, session = ... %> +<% require("viewfunctions") %> <H1>Debugging</H1> <H2>View Data:</H2> -<%= html.cfe_unpack(data) %> +<%= cfe_unpack(data) %> <H2>Session:</H2> -<%= html.cfe_unpack(session) %> +<%= cfe_unpack(session) %> <H2>Page Info:</H2> -<%= html.cfe_unpack(page_info) %> +<%= cfe_unpack(page_info) %> |