diff options
Diffstat (limited to 'openssl-html.lsp')
-rw-r--r-- | openssl-html.lsp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/openssl-html.lsp b/openssl-html.lsp new file mode 100644 index 0000000..6501c7b --- /dev/null +++ b/openssl-html.lsp @@ -0,0 +1,12 @@ +<% local form, viewlibrary, page_info, session = ... %> +<% htmlviewfunctions = require("htmlviewfunctions") %> + +<% +if viewlibrary and viewlibrary.dispatch_component and viewlibrary.check_permission("getcachain") and page_info.orig_action == page_info.prefix..page_info.controller.."/"..page_info.action then + viewlibrary.dispatch_component("getcachain", {cadir=form.value.cadir.value}) +end +%> + +<% +htmlviewfunctions.displayitem(form, page_info) +%> |