diff options
author | Ted Trask <ttrask01@yahoo.com> | 2012-04-18 02:02:10 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2012-04-18 02:02:10 +0000 |
commit | 68a8022f6bebd4df4f4e737ba110615ba849b8dc (patch) | |
tree | 755ea9b377c3d4553de6f406434eac3bf4edad5a /weblog-viewactivitylog-html.lsp | |
parent | d9fa806c3744755c76ab914ac54ce137456c0193 (diff) | |
download | acf-weblog-68a8022f6bebd4df4f4e737ba110615ba849b8dc.tar.bz2 acf-weblog-68a8022f6bebd4df4f4e737ba110615ba849b8dc.tar.xz |
Started work on updating for acf-core-0.15
Removed controllerfunctions library (still needs more work and corresponding work in model)
Updated for viewfunctions to htmlviewfunctions and modified require statements for acf libraries
Diffstat (limited to 'weblog-viewactivitylog-html.lsp')
-rw-r--r-- | weblog-viewactivitylog-html.lsp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/weblog-viewactivitylog-html.lsp b/weblog-viewactivitylog-html.lsp index a272544..95a6361 100644 --- a/weblog-viewactivitylog-html.lsp +++ b/weblog-viewactivitylog-html.lsp @@ -1,11 +1,11 @@ <% local data, viewlibrary, page_info, session = ... %> -<% require("viewfunctions") %> +<% require("htmlviewfunctions") %> -<% local subdata, pagedata = paginate(data.value, page_info.clientdata, 100) %> +<% local subdata, pagedata = htmlviewfunctions.paginate(data.value, page_info.clientdata, 100) %> <H1><%= html.html_escape(data.label) %></H1> <DL> -<% displaypagination(pagedata, page_info) %> +<% htmlviewfunctions.displaypagination(pagedata, page_info) %> <TABLE> <TR class="header"> <TD style="padding-right:20px;white-space:nowrap;" class="header">Date</TD> |