summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2012-10-02 15:09:27 +0000
committerTed Trask <ttrask01@yahoo.com>2012-10-02 15:09:27 +0000
commit16234a475667515a0481caa3c7735f928998fe51 (patch)
treee14257ee83d452a1f421c4a83e205ec8c7cb707c
parent21ed0cc45c8c1cc82d861271881a27f1acfb3728 (diff)
downloadacf-dnscache-16234a475667515a0481caa3c7735f928998fe51.tar.bz2
acf-dnscache-16234a475667515a0481caa3c7735f928998fe51.tar.xz
Added require statement for html library
-rw-r--r--dnscache-editdomain-html.lsp1
-rw-r--r--dnscache-listdomains-html.lsp1
2 files changed, 2 insertions, 0 deletions
diff --git a/dnscache-editdomain-html.lsp b/dnscache-editdomain-html.lsp
index dd1ee4e..e3a7c0e 100644
--- a/dnscache-editdomain-html.lsp
+++ b/dnscache-editdomain-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/dnscache-listdomains-html.lsp b/dnscache-listdomains-html.lsp
index 8e01ae1..ea4c350 100644
--- a/dnscache-listdomains-html.lsp
+++ b/dnscache-listdomains-html.lsp
@@ -1,5 +1,6 @@
<% local data, viewlibrary, page_info, session = ...
require("htmlviewfunctions")
+html = require("acf.html")
%>
<% htmlviewfunctions.displaycommandresults({"editdomain", "deletedomain"}, session) %>