aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2013-04-27 19:14:22 +0200
committerKim Alvefur <zash@zash.se>2013-04-27 19:14:22 +0200
commit1add106db7fbdc31a9c05292b20073bc30872faa (patch)
treea86e223e031f577303923a4fbb03073887c012aa /core
parent9dc5c29cceeda0cce3e3a8def2780c22b26e46f0 (diff)
downloadprosody-1add106db7fbdc31a9c05292b20073bc30872faa.tar.gz
prosody-1add106db7fbdc31a9c05292b20073bc30872faa.zip
moduleapi: module:provides called without an item makes a copy of the environment instead. Fixes warnings about non-existent globals
Diffstat (limited to 'core')
-rw-r--r--core/moduleapi.lua8
1 files changed, 7 insertions, 1 deletions
diff --git a/core/moduleapi.lua b/core/moduleapi.lua
index 9baf4fba..764ed52a 100644
--- a/core/moduleapi.lua
+++ b/core/moduleapi.lua
@@ -319,7 +319,13 @@ function api:handle_items(type, added_cb, removed_cb, existing)
end
function api:provides(name, item)
- if not item then item = self.environment; end
+ -- if not item then item = setmetatable({}, { __index = function(t,k) return rawget(self.environment, k); end }); end
+ if not item then
+ item = {}
+ for k,v in pairs(self.environment) do
+ if k ~= "module" then item[k] = v; end
+ end
+ end
if not item.name then
local item_name = self.name;
-- Strip a provider prefix to find the item name