diff options
author | Ted Trask <ttrask01@yahoo.com> | 2014-03-17 16:20:12 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2014-03-17 16:20:12 +0000 |
commit | 0c5f445ce36bb8951ddb3ed3dffac0ae23b984d8 (patch) | |
tree | 549ed51583b3658b6c4a939fb9588de382d69810 /app/acf-util/welcome-html.lsp | |
parent | 0d13dbbc43b7c48eb23246cf4f2c277cbb5942c3 (diff) | |
download | acf-core-0c5f445ce36bb8951ddb3ed3dffac0ae23b984d8.tar.bz2 acf-core-0c5f445ce36bb8951ddb3ed3dffac0ae23b984d8.tar.xz |
Change htmlviewfunctions.displayheader to .displaysectionstart and added .displaysectionend function
Diffstat (limited to 'app/acf-util/welcome-html.lsp')
-rw-r--r-- | app/acf-util/welcome-html.lsp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/acf-util/welcome-html.lsp b/app/acf-util/welcome-html.lsp index 8c3a96d..b83bc7e 100644 --- a/app/acf-util/welcome-html.lsp +++ b/app/acf-util/welcome-html.lsp @@ -1,7 +1,7 @@ <% local view, viewlibrary, page_info, session = ... %> <% htmlviewfunctions = require("htmlviewfunctions") %> -<% htmlviewfunctions.displayheader(cfe({label="Alpine Configuration Framework"}), page_info) %> +<% local header_level = htmlviewfunctions.displaysectionstart(cfe({label="Alpine Configuration Framework"}), page_info) %> <p>Welcome.</p> <% --[[ @@ -9,3 +9,4 @@ io.write(htmlviewfunctions.cfe_unpack(FORM)) io.write(htmlviewfunctions.cfe_unpack(ENV)) --]] %> +<% htmlviewfunctions.displaysectionend(header_level) %> |