diff options
author | Waqas Hussain <waqas20@gmail.com> | 2012-09-12 23:41:28 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2012-09-12 23:41:28 +0500 |
commit | 66f46ff6ef421dca6831e5bf5e26997333b1188c (patch) | |
tree | 8232a35e4a72f1529167fa67c643a5096e15f02c /core | |
parent | 025eca8452019482ca9840c488f22f43510185bc (diff) | |
download | prosody-66f46ff6ef421dca6831e5bf5e26997333b1188c.tar.gz prosody-66f46ff6ef421dca6831e5bf5e26997333b1188c.zip |
core.storagemanager, mod_storage_*: "data-driver" -> "storage-provider", to allow using module:provides().
Diffstat (limited to 'core')
-rw-r--r-- | core/storagemanager.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/storagemanager.lua b/core/storagemanager.lua index 1b76a394..18e2e7f9 100644 --- a/core/storagemanager.lua +++ b/core/storagemanager.lua @@ -33,12 +33,12 @@ local stores_available = multitable.new(); function initialize_host(host) local host_session = hosts[host]; - host_session.events.add_handler("item-added/data-driver", function (event) + host_session.events.add_handler("item-added/storage-provider", function (event) local item = event.item; stores_available:set(host, item.name, item); end); - host_session.events.add_handler("item-removed/data-driver", function (event) + host_session.events.add_handler("item-removed/storage-provider", function (event) local item = event.item; stores_available:set(host, item.name, nil); end); |