summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--vlc-logfile-html.lsp2
-rw-r--r--vlc-model.lua2
2 files changed, 2 insertions, 2 deletions
diff --git a/vlc-logfile-html.lsp b/vlc-logfile-html.lsp
index 6250093..8bbb979 100644
--- a/vlc-logfile-html.lsp
+++ b/vlc-logfile-html.lsp
@@ -1,5 +1,5 @@
<% local form, viewlibrary, page_info = ... %>
-<% require("htmlviewfunctions") %>
+<% htmlviewfunctions = require("htmlviewfunctions") %>
<% html = require("acf.html") %>
<H1>Logfile</H1>
diff --git a/vlc-model.lua b/vlc-model.lua
index 4b8c07f..aa9470f 100644
--- a/vlc-model.lua
+++ b/vlc-model.lua
@@ -1,7 +1,7 @@
module(..., package.seeall)
-- Load libraries
-require("modelfunctions")
+modelfunctions = require("modelfunctions")
fs = require("acf.fs")
-- ################################################################################