summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2013-05-30 17:14:37 +0000
committerTed Trask <ttrask01@yahoo.com>2013-05-30 17:14:37 +0000
commit97a09940fb6805ebf55dfb43847a87fa8260be34 (patch)
tree69eba6f4863c1af42bc74971304c12bf9c366ba8 /lib
parent0fc3f7676fa540fe11746a883d74ae1d24f6f780 (diff)
downloadacf-core-97a09940fb6805ebf55dfb43847a87fa8260be34.tar.bz2
acf-core-97a09940fb6805ebf55dfb43847a87fa8260be34.tar.xz
Added missing require statements to authenticator-plaintext.lua and menubuilder.lua
Diffstat (limited to 'lib')
-rw-r--r--lib/authenticator-plaintext.lua3
-rw-r--r--lib/menubuilder.lua1
2 files changed, 4 insertions, 0 deletions
diff --git a/lib/authenticator-plaintext.lua b/lib/authenticator-plaintext.lua
index 5c37877..c652fec 100644
--- a/lib/authenticator-plaintext.lua
+++ b/lib/authenticator-plaintext.lua
@@ -9,6 +9,9 @@ create a different file for each field.
module (..., package.seeall)
+fs = require("acf.fs")
+require("posix")
+
list_fields = function(self, tabl)
if not self or not tabl or tabl == "" then
return {}
diff --git a/lib/menubuilder.lua b/lib/menubuilder.lua
index f897ddc..831ceb3 100644
--- a/lib/menubuilder.lua
+++ b/lib/menubuilder.lua
@@ -7,6 +7,7 @@ module(..., package.seeall)
require("posix")
format = require("acf.format")
+fs = require("acf.fs")
-- returns a table of the "*.menu" tables
-- startdir should be the app dir.