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 /plugins/storage | |
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 'plugins/storage')
-rw-r--r-- | plugins/storage/mod_xep0227.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/storage/mod_xep0227.lua b/plugins/storage/mod_xep0227.lua index b6d2e627..ac0441b1 100644 --- a/plugins/storage/mod_xep0227.lua +++ b/plugins/storage/mod_xep0227.lua @@ -160,4 +160,4 @@ function driver:open(host, datastore, typ) return instance; end -module:add_item("data-driver", driver); +module:provides("storage", driver); |