diff options
author | Matthew Wild <mwild1@gmail.com> | 2018-08-06 08:29:49 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2018-08-06 08:29:49 +0100 |
commit | 01e11dd7234ffb839fd1d546cd10c23b6c4a3f80 (patch) | |
tree | 60d64452031ae38cfdd41eda8f21bcb7b6dad5a5 /plugins | |
parent | 96509275b883522d8a16bed56c998a2a2fe0424f (diff) | |
download | prosody-01e11dd7234ffb839fd1d546cd10c23b6c4a3f80.tar.gz prosody-01e11dd7234ffb839fd1d546cd10c23b6c4a3f80.zip |
pubsub.lib: Enable publish-options by default
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_pubsub/pubsub.lib.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_pubsub/pubsub.lib.lua b/plugins/mod_pubsub/pubsub.lib.lua index e6c6fd6f..0119da14 100644 --- a/plugins/mod_pubsub/pubsub.lib.lua +++ b/plugins/mod_pubsub/pubsub.lib.lua @@ -12,7 +12,7 @@ local xmlns_pubsub = "http://jabber.org/protocol/pubsub"; local xmlns_pubsub_errors = "http://jabber.org/protocol/pubsub#errors"; local xmlns_pubsub_owner = "http://jabber.org/protocol/pubsub#owner"; -local enable_publish_options = module:get_option_boolean("enable_publish_options", false); +local enable_publish_options = module:get_option_boolean("enable_publish_options", true); local _M = {}; |