diff options
author | Matthew Wild <mwild1@gmail.com> | 2012-09-19 12:14:08 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2012-09-19 12:14:08 +0100 |
commit | fc11c75968dab816534939aafb2378dcd052c5e5 (patch) | |
tree | cf7a08a965f0bb9816285dcc830a140b62fc0ab1 /plugins/mod_storage_internal.lua | |
parent | 5f27e2a04037afdb5da8ef53b88ffa7b25014e32 (diff) | |
parent | ec41d90e0f1dd90bf7908acbf5ab25301dec9519 (diff) | |
download | prosody-fc11c75968dab816534939aafb2378dcd052c5e5.tar.gz prosody-fc11c75968dab816534939aafb2378dcd052c5e5.zip |
Merge 0.9->trunk
Diffstat (limited to 'plugins/mod_storage_internal.lua')
-rw-r--r-- | plugins/mod_storage_internal.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mod_storage_internal.lua b/plugins/mod_storage_internal.lua index 75f6ec4e..039202dd 100644 --- a/plugins/mod_storage_internal.lua +++ b/plugins/mod_storage_internal.lua @@ -16,8 +16,8 @@ function driver:set(user, data) return datamanager.store(user, host, self.store, data); end -function driver:list_stores(username) - return datamanager.list_stores(username, host); +function driver:stores(username) + return datamanager.stores(username, host); end function driver:purge(user) |