diff options
author | Matthew Wild <mwild1@gmail.com> | 2010-12-21 03:30:18 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2010-12-21 03:30:18 +0000 |
commit | f078bb3e6965d6a106abe09324fa017e0a72eeaa (patch) | |
tree | 5ff0ea8cb266413422fd85c44765ca5bd6d25984 /plugins/mod_pubsub.lua | |
parent | 21e2340f1fd008719223f585d5162fe4378c4430 (diff) | |
download | prosody-f078bb3e6965d6a106abe09324fa017e0a72eeaa.tar.gz prosody-f078bb3e6965d6a106abe09324fa017e0a72eeaa.zip |
mod_pubsub: Fix capabilities table from some debugging
Diffstat (limited to 'plugins/mod_pubsub.lua')
-rw-r--r-- | plugins/mod_pubsub.lua | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/plugins/mod_pubsub.lua b/plugins/mod_pubsub.lua index 1603676b..289b1206 100644 --- a/plugins/mod_pubsub.lua +++ b/plugins/mod_pubsub.lua @@ -219,7 +219,7 @@ service = pubsub.new({ subscribe = true; unsubscribe = true; get_subscription = true; - --get_items = true; + get_items = true; subscribe_other = false; unsubscribe_other = false; @@ -239,7 +239,7 @@ service = pubsub.new({ subscribe = true; unsubscribe = true; get_subscription = true; - --get_items = true; + get_items = true; subscribe_other = true; @@ -251,7 +251,6 @@ service = pubsub.new({ set_affiliation = true; }; - admin = { get_items = true }; }; autocreate_on_publish = module:get_option_boolean("autocreate_on_publish"); |