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 | a868b41b589356e9231df919a1771cc99b20d54b (patch) | |
tree | cf7a08a965f0bb9816285dcc830a140b62fc0ab1 /plugins/mod_storage_internal.lua | |
parent | 8ffa6ad43baaab15a9bf11d51d229312315ac44e (diff) | |
parent | 3b96fac7491ce85877b7ee2038ae90b2d501ca6c (diff) | |
download | prosody-a868b41b589356e9231df919a1771cc99b20d54b.tar.gz prosody-a868b41b589356e9231df919a1771cc99b20d54b.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) |