summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--freeswitch-listfiles-html.lsp2
-rw-r--r--freeswitch-model.lua4
2 files changed, 3 insertions, 3 deletions
diff --git a/freeswitch-listfiles-html.lsp b/freeswitch-listfiles-html.lsp
index 53af88d..f4a8bcc 100644
--- a/freeswitch-listfiles-html.lsp
+++ b/freeswitch-listfiles-html.lsp
@@ -1,5 +1,5 @@
<% local view, viewlibrary, page_info, session = ...
-require("htmlviewfunctions")
+htmlviewfunctions = require("htmlviewfunctions")
html = require("acf.html")
%>
diff --git a/freeswitch-model.lua b/freeswitch-model.lua
index 3c0a8ab..ffdc699 100644
--- a/freeswitch-model.lua
+++ b/freeswitch-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")