# HG changeset patch # User Waqas Hussain # Date 1250580899 -18000 # Node ID f1783e621a36a652a7d1b21aca74c13e14eba507 # Parent 2afc87ccc3795ca65dc75962352dd4d3a30994e7 modulemanager: Module API functions add_item and add_feature updated to use the add_item API diff -r 2afc87ccc379 -r f1783e621a36 core/modulemanager.lua --- a/core/modulemanager.lua Tue Aug 18 12:33:43 2009 +0500 +++ b/core/modulemanager.lua Tue Aug 18 12:34:59 2009 +0500 @@ -368,9 +368,11 @@ end); function api:add_feature(xmlns) + self:add_item("feature", xmlns); features_table:set(self.host, self.name, xmlns, true); end function api:add_identity(category, type, name) + self:add_item("identity", {category = category, type = type, name = name}); identities_table:set(self.host, self.name, category.."\0"..type, {category = category, type = type, name = name}); end