diff options
| -rw-r--r-- | postfix-details-html.lsp | 2 | ||||
| -rw-r--r-- | postfix-listfiles-html.lsp | 2 | ||||
| -rw-r--r-- | postfix-listqueue-html.lsp | 2 | ||||
| -rw-r--r-- | postfix-model.lua | 4 | 
4 files changed, 5 insertions, 5 deletions
diff --git a/postfix-details-html.lsp b/postfix-details-html.lsp index 905a057..778a3bf 100644 --- a/postfix-details-html.lsp +++ b/postfix-details-html.lsp @@ -1,5 +1,5 @@  <% local data, viewlibrary = ...  -require("htmlviewfunctions") +htmlviewfunctions = require("htmlviewfunctions")  html = require("acf.html")  %> diff --git a/postfix-listfiles-html.lsp b/postfix-listfiles-html.lsp index f1d8671..8127202 100644 --- a/postfix-listfiles-html.lsp +++ b/postfix-listfiles-html.lsp @@ -1,5 +1,5 @@  <% local data, viewlibrary, page_info, session = ...  -require("htmlviewfunctions") +htmlviewfunctions = require("htmlviewfunctions")  html = require("acf.html")  %> diff --git a/postfix-listqueue-html.lsp b/postfix-listqueue-html.lsp index 4ea9011..6e09ee0 100644 --- a/postfix-listqueue-html.lsp +++ b/postfix-listqueue-html.lsp @@ -1,5 +1,5 @@  <% local data, viewlibrary, page_info, session = ...  -require("htmlviewfunctions") +htmlviewfunctions = require("htmlviewfunctions")  html = require("acf.html")  %> diff --git a/postfix-model.lua b/postfix-model.lua index a932b05..2b01b35 100644 --- a/postfix-model.lua +++ b/postfix-model.lua @@ -1,8 +1,8 @@  module(..., package.seeall)  -- Load libraries -require("modelfunctions") -require("posix") +modelfunctions = require("modelfunctions") +posix = require("posix")  fs = require("acf.fs")  format = require("acf.format")  validator = require("acf.validator")  | 
