diff options
author | Matthew Wild <mwild1@gmail.com> | 2014-10-14 10:59:54 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2014-10-14 10:59:54 +0100 |
commit | 161f220404b6519eda9288e9a38cd0c1eb76179e (patch) | |
tree | 5ad39be8aac11ff828d4ff5a36227b480a509cb3 /prosody | |
parent | 8e63db7b12038c71190423517851c9225777b945 (diff) | |
parent | cb4ef2e67f00b3ae37603398270fb535a34fe011 (diff) | |
download | prosody-161f220404b6519eda9288e9a38cd0c1eb76179e.tar.gz prosody-161f220404b6519eda9288e9a38cd0c1eb76179e.zip |
Merge 0.10->trunk
Diffstat (limited to 'prosody')
-rwxr-xr-x | prosody | 10 |
1 files changed, 4 insertions, 6 deletions
@@ -151,13 +151,11 @@ function sandbox_require() -- for neat sandboxing of modules local _realG = _G; local _real_require = require; - if not getfenv then + local getfenv = getfenv or function (f) -- FIXME: This is a hack to replace getfenv() in Lua 5.2 - function getfenv(f) - local name, env = debug.getupvalue(debug.getinfo(f or 1).func, 1); - if name == "_ENV" then - return env; - end + local name, env = debug.getupvalue(debug.getinfo(f or 1).func, 1); + if name == "_ENV" then + return env; end end function require(...) |