moduleapi: module:provides(): Fix usage of wrong table

This commit is contained in:
Matthew Wild 2012-04-23 14:09:35 +01:00
parent c065013ced
commit 5b5c8c83b3

View file

@ -298,7 +298,7 @@ end
function api:provides(name, item)
if not item then item = self.environment; end
if not item.name then
local item_name = module.name;
local item_name = self.name;
-- Strip a provider prefix to find the item name
-- (e.g. "auth_foo" -> "foo" for an auth provider)
if item_name:find(name.."_", 1, true) == 1 then