From a132ee26d8fbadc61994b4bf78ebe7dd3e259849 Mon Sep 17 00:00:00 2001 From: Ted Trask Date: Tue, 2 Oct 2012 15:13:32 +0000 Subject: Added require statement for html library --- postfix-details-html.lsp | 1 + postfix-listfiles-html.lsp | 1 + postfix-listqueue-html.lsp | 1 + 3 files changed, 3 insertions(+) diff --git a/postfix-details-html.lsp b/postfix-details-html.lsp index ae142cd..905a057 100644 --- a/postfix-details-html.lsp +++ b/postfix-details-html.lsp @@ -1,5 +1,6 @@ <% local data, viewlibrary = ... require("htmlviewfunctions") +html = require("acf.html") %> <% viewlibrary.dispatch_component("status") %> diff --git a/postfix-listfiles-html.lsp b/postfix-listfiles-html.lsp index 4d47a24..f1d8671 100644 --- a/postfix-listfiles-html.lsp +++ b/postfix-listfiles-html.lsp @@ -1,5 +1,6 @@ <% local data, viewlibrary, page_info, session = ... require("htmlviewfunctions") +html = require("acf.html") %> <% htmlviewfunctions.displaycommandresults({"deletefile", "expert", "rebuilddatabases"}, session) %> diff --git a/postfix-listqueue-html.lsp b/postfix-listqueue-html.lsp index c86e7ab..4ea9011 100644 --- a/postfix-listqueue-html.lsp +++ b/postfix-listqueue-html.lsp @@ -1,5 +1,6 @@ <% local data, viewlibrary, page_info, session = ... require("htmlviewfunctions") +html = require("acf.html") %> <% htmlviewfunctions.displaycommandresults({"flushqueue"}, session) %> -- cgit v1.2.3