diff options
-rw-r--r-- | samba-editshare-html.lsp | 1 | ||||
-rw-r--r-- | samba-join-html.lsp | 1 | ||||
-rw-r--r-- | samba-listfiles-html.lsp | 1 | ||||
-rw-r--r-- | samba-listshares-html.lsp | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/samba-editshare-html.lsp b/samba-editshare-html.lsp index 85a2cdf..d53d861 100644 --- a/samba-editshare-html.lsp +++ b/samba-editshare-html.lsp @@ -1,5 +1,6 @@ <% local form, viewlibrary, page_info = ... require("htmlviewfunctions") +html = require("acf.html") %> <H1><%= html.html_escape(form.label) %></H1> diff --git a/samba-join-html.lsp b/samba-join-html.lsp index 4a340a8..8a11d3a 100644 --- a/samba-join-html.lsp +++ b/samba-join-html.lsp @@ -1,5 +1,6 @@ <% local form, viewlibrary, page_info, session = ... require("htmlviewfunctions") +html = require("acf.html") %> <% if viewlibrary and viewlibrary.dispatch_component then diff --git a/samba-listfiles-html.lsp b/samba-listfiles-html.lsp index 588c753..2458ea7 100644 --- a/samba-listfiles-html.lsp +++ b/samba-listfiles-html.lsp @@ -1,5 +1,6 @@ <% local data, viewlibrary, page_info, session = ... require("htmlviewfunctions") +html = require("acf.html") %> <% htmlviewfunctions.displaycommandresults({"expert"}, session) %> diff --git a/samba-listshares-html.lsp b/samba-listshares-html.lsp index a3332f7..80707a8 100644 --- a/samba-listshares-html.lsp +++ b/samba-listshares-html.lsp @@ -1,5 +1,6 @@ <% local view, viewlibrary, page_info, session = ... require("htmlviewfunctions") +html = require("acf.html") %> <% htmlviewfunctions.displaycommandresults({"editshare", "deleteshare"}, session) %> |