diff options
author | Ted Trask <ttrask01@yahoo.com> | 2014-03-17 16:21:02 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2014-03-17 16:21:02 +0000 |
commit | fac49f7ab11ad399ac380459ef183f92478b03b4 (patch) | |
tree | 1758ecdfcdd7f06c793933683a4981e39b21548f /modules-status-html.lsp | |
parent | badb1b3f5477611441c2c3e91ae9eb9263120bae (diff) | |
download | acf-alpine-baselayout-fac49f7ab11ad399ac380459ef183f92478b03b4.tar.bz2 acf-alpine-baselayout-fac49f7ab11ad399ac380459ef183f92478b03b4.tar.xz |
Change htmlviewfunctions.displayheader to .displaysectionstart and added .displaysectionend function
Diffstat (limited to 'modules-status-html.lsp')
-rw-r--r-- | modules-status-html.lsp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/modules-status-html.lsp b/modules-status-html.lsp index e70dee1..871202e 100644 --- a/modules-status-html.lsp +++ b/modules-status-html.lsp @@ -3,7 +3,11 @@ <% html = require("acf.html") %> <% -local header_level = htmlviewfunctions.displayheader(cfe({label="Modules"}), page_info) -htmlviewfunctions.displayheader(cfe({label="Installed modules"}), page_info, htmlviewfunctions.incrementheader(header_level)) +local header_level = htmlviewfunctions.displaysectionstart(cfe({label="Modules"}), page_info) +local header_level2 = htmlviewfunctions.displaysectionstart(cfe({label="Installed modules"}), page_info, htmlviewfunctions.incrementheader(header_level)) %> <pre><%= html.html_escape(view.value) %></pre> +<% +htmlviewfunctions.displaysectionend(header_level2) +htmlviewfunctions.displaysectionend(header_level) +%> |