summaryrefslogtreecommitdiffstats
path: root/weblog-model.lua
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2012-04-18 02:02:10 +0000
committerTed Trask <ttrask01@yahoo.com>2012-04-18 02:02:10 +0000
commit68a8022f6bebd4df4f4e737ba110615ba849b8dc (patch)
tree755ea9b377c3d4553de6f406434eac3bf4edad5a /weblog-model.lua
parentd9fa806c3744755c76ab914ac54ce137456c0193 (diff)
downloadacf-weblog-68a8022f6bebd4df4f4e737ba110615ba849b8dc.tar.bz2
acf-weblog-68a8022f6bebd4df4f4e737ba110615ba849b8dc.tar.xz
Started work on updating for acf-core-0.15
Removed controllerfunctions library (still needs more work and corresponding work in model) Updated for viewfunctions to htmlviewfunctions and modified require statements for acf libraries
Diffstat (limited to 'weblog-model.lua')
-rw-r--r--weblog-model.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/weblog-model.lua b/weblog-model.lua
index 7f09c7d..cf516b3 100644
--- a/weblog-model.lua
+++ b/weblog-model.lua
@@ -2,9 +2,9 @@ module(..., package.seeall)
-- Load libraries
require("modelfunctions")
-require("fs")
-require("format")
-require("validator")
+fs = require("acf.fs")
+format = require("acf.format")
+validator = require("acf.validator")
require("luasql.postgres")
local DatabaseName = "webproxylog"