diff options
author | Matthew Wild <mwild1@gmail.com> | 2023-03-22 16:44:47 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2023-03-22 16:44:47 +0000 |
commit | 2b72eb4211c20aba941be08b9d87d7d957ef465b (patch) | |
tree | ccb882b0e9531e01267b55fd27a918cf93fb0c89 /plugins | |
parent | 5f98d0cc2359f1ab55b7af8179981592a3508faa (diff) | |
download | prosody-2b72eb4211c20aba941be08b9d87d7d957ef465b.tar.gz prosody-2b72eb4211c20aba941be08b9d87d7d957ef465b.zip |
mod_pubsub/pubsub.lib: Fix accidental name/var swap (thanks scansion)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_pubsub/pubsub.lib.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mod_pubsub/pubsub.lib.lua b/plugins/mod_pubsub/pubsub.lib.lua index 829e2b45..a409d640 100644 --- a/plugins/mod_pubsub/pubsub.lib.lua +++ b/plugins/mod_pubsub/pubsub.lib.lua @@ -167,8 +167,8 @@ local node_config_form = dataform { { type = "list-single"; label = "Specify whose JID to include as the publisher of items"; - name = "pubsub#itemreply"; - var = "itemreply"; + name = "itemreply"; + var = "pubsub#itemreply"; options = { { label = "Include the node owner's JID", value = "owner" }; { label = "Include the item publisher's JID", value = "publisher" }; |