diff options
-rw-r--r-- | shorewall-listfiles-html.lsp | 2 | ||||
-rw-r--r-- | shorewall-model.lua | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/shorewall-listfiles-html.lsp b/shorewall-listfiles-html.lsp index dd8c2a2..0183582 100644 --- a/shorewall-listfiles-html.lsp +++ b/shorewall-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/shorewall-model.lua b/shorewall-model.lua index ca70e89..765157a 100644 --- a/shorewall-model.lua +++ b/shorewall-model.lua @@ -1,7 +1,7 @@ module(..., package.seeall) -- Load libraries -require("modelfunctions") +modelfunctions = require("modelfunctions") fs = require("acf.fs") format = require("acf.format") |