diff options
author | Kim Alvefur <zash@zash.se> | 2018-08-06 16:58:21 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-08-06 16:58:21 +0200 |
commit | c1c7007c898813a1a231a267d97edc8371e42b8f (patch) | |
tree | f0c9819502c08952e09629e0fdd3a3c494e7c97d /plugins/mod_pubsub | |
parent | 7e135cf8ad67ab7ff977b64693627f34bca13c1d (diff) | |
parent | 30bf5f22593069ec56982198a6581af5fb4c6988 (diff) | |
download | prosody-c1c7007c898813a1a231a267d97edc8371e42b8f.tar.gz prosody-c1c7007c898813a1a231a267d97edc8371e42b8f.zip |
Merge jonasw->trunk
Diffstat (limited to 'plugins/mod_pubsub')
-rw-r--r-- | plugins/mod_pubsub/pubsub.lib.lua | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/mod_pubsub/pubsub.lib.lua b/plugins/mod_pubsub/pubsub.lib.lua index aad78235..40a664f2 100644 --- a/plugins/mod_pubsub/pubsub.lib.lua +++ b/plugins/mod_pubsub/pubsub.lib.lua @@ -75,11 +75,11 @@ local node_config_form = dataform { name = "pubsub#access_model"; label = "Specify the subscriber model"; options = { - { value = "authorize" }; - { value = "open" }; - { value = "presence" }; - { value = "roster" }; - { value = "whitelist" }; + "authorize", + "open", + "presence", + "roster", + "whitelist", }; }; { |