summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2012-10-02 15:15:28 +0000
committerTed Trask <ttrask01@yahoo.com>2012-10-02 15:15:28 +0000
commit2693dec84e4273af8a41dd0dabf985aa759f9e7b (patch)
tree6e38ff600f4e31f555d62ea10136c07f8c30f347
parent1d69f16fdd4a6eb80cbf9fe55cbe13c89c145e14 (diff)
downloadacf-tcpproxy-2693dec84e4273af8a41dd0dabf985aa759f9e7b.tar.bz2
acf-tcpproxy-2693dec84e4273af8a41dd0dabf985aa759f9e7b.tar.xz
Added require statement for html library
-rw-r--r--tcpproxy-editsmtpentry-html.lsp1
-rw-r--r--tcpproxy-listsmtpentries-html.lsp1
-rw-r--r--tcpproxy-listsmtpfiles-html.lsp1
-rw-r--r--tcpproxy-smtpstatus-html.lsp1
4 files changed, 4 insertions, 0 deletions
diff --git a/tcpproxy-editsmtpentry-html.lsp b/tcpproxy-editsmtpentry-html.lsp
index 807b211..c70c916 100644
--- a/tcpproxy-editsmtpentry-html.lsp
+++ b/tcpproxy-editsmtpentry-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/tcpproxy-listsmtpentries-html.lsp b/tcpproxy-listsmtpentries-html.lsp
index 11155c9..b1edcb9 100644
--- a/tcpproxy-listsmtpentries-html.lsp
+++ b/tcpproxy-listsmtpentries-html.lsp
@@ -1,5 +1,6 @@
<% local view, viewlibrary, page_info, session = ...
require("htmlviewfunctions")
+html = require("acf.html")
%>
<% htmlviewfunctions.displaycommandresults({"editsmtpentry", "delsmtpentry"}, session) %>
diff --git a/tcpproxy-listsmtpfiles-html.lsp b/tcpproxy-listsmtpfiles-html.lsp
index da3818b..0e58703 100644
--- a/tcpproxy-listsmtpfiles-html.lsp
+++ b/tcpproxy-listsmtpfiles-html.lsp
@@ -1,5 +1,6 @@
<% local view, viewlibrary, page_info, session = ...
require("htmlviewfunctions")
+html = require("acf.html")
%>
<% htmlviewfunctions.displaycommandresults({"editsmtpfile", "delsmtpfile"}, session) %>
diff --git a/tcpproxy-smtpstatus-html.lsp b/tcpproxy-smtpstatus-html.lsp
index b0e4060..baeaf2c 100644
--- a/tcpproxy-smtpstatus-html.lsp
+++ b/tcpproxy-smtpstatus-html.lsp
@@ -1,5 +1,6 @@
<% local view, viewlibrary, page_info, session = ...
require("htmlviewfunctions")
+html = require("acf.html")
%>
<% htmlviewfunctions.displaycommandresults({"editsmtpentry", "delsmtpentry", "editsmtpfile", "delsmtpfile"}, session) %>