aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2017-03-17 13:08:31 +0000
committerMatthew Wild <mwild1@gmail.com>2017-03-17 13:08:31 +0000
commit6c23b9334dce0d75e72e5ead56d72b0e6acc9b5a (patch)
treebde2c18dd96f4ad8dbf284a4e6c95d1172975c37 /plugins
parent3601968ff85a10f18f1dba92360aac7efabe09ad (diff)
parent649b17b2e49b40796de43692b04bba22f6bf5c9b (diff)
downloadprosody-6c23b9334dce0d75e72e5ead56d72b0e6acc9b5a.tar.gz
prosody-6c23b9334dce0d75e72e5ead56d72b0e6acc9b5a.zip
Merge 0.10 -> trunk
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_pubsub/mod_pubsub.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_pubsub/mod_pubsub.lua b/plugins/mod_pubsub/mod_pubsub.lua
index 18d85c52..8e7bfc53 100644
--- a/plugins/mod_pubsub/mod_pubsub.lua
+++ b/plugins/mod_pubsub/mod_pubsub.lua
@@ -9,7 +9,7 @@ local xmlns_pubsub_owner = "http://jabber.org/protocol/pubsub#owner";
local autocreate_on_publish = module:get_option_boolean("autocreate_on_publish", false);
local autocreate_on_subscribe = module:get_option_boolean("autocreate_on_subscribe", false);
-local pubsub_disco_name = module:get_option_string("name" "Prosody PubSub Service");
+local pubsub_disco_name = module:get_option_string("name", "Prosody PubSub Service");
local expose_publisher = module:get_option_boolean("expose_publisher", false)
local service;