summaryrefslogtreecommitdiffstats
path: root/www
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2010-07-30 07:00:53 +0000
committerTed Trask <ttrask01@yahoo.com>2010-07-30 07:00:53 +0000
commit3d61ed860f2200077842052fee145a49e0efa247 (patch)
treef9fcc13d5e5bffb35d6e1b2d8ceef6a8b9db82e9 /www
parent4ab0a0c0517276a4e0a120879a84eea08209e7b3 (diff)
downloadacf-core-3d61ed860f2200077842052fee145a49e0efa247.tar.bz2
acf-core-3d61ed860f2200077842052fee145a49e0efa247.tar.xz
Fixed typo
Diffstat (limited to 'www')
-rwxr-xr-xwww/cgi-bin/mvc.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/www/cgi-bin/mvc.lua b/www/cgi-bin/mvc.lua
index 004a1d1..78cdc0e 100755
--- a/www/cgi-bin/mvc.lua
+++ b/www/cgi-bin/mvc.lua
@@ -120,7 +120,7 @@ destroy = function (self)
-- remove packages from package.loaded
if self["_NAME"] then package.loaded[self["_NAME"]] = nil end
- if self.model and self.model["_NAME"]] then package.loaded[self.model["_NAME"]] = nil end
+ if self.model and self.model["_NAME"] then package.loaded[self.model["_NAME"]] = nil end
end
-- This is a sample front controller/dispatch.