# HG changeset patch # User Matthew Wild # Date 1679503487 0 # Node ID 1cbfa843f8c3fa6bd6c6cb137913e0d3da918cb3 # Parent 31b22cc221b53b24d5536aed313ef61ddd097c4d mod_pubsub/pubsub.lib: Fix accidental name/var swap (thanks scansion) diff -r 31b22cc221b5 -r 1cbfa843f8c3 plugins/mod_pubsub/pubsub.lib.lua --- a/plugins/mod_pubsub/pubsub.lib.lua Wed Mar 22 11:39:19 2023 +0000 +++ b/plugins/mod_pubsub/pubsub.lib.lua Wed Mar 22 16:44:47 2023 +0000 @@ -167,8 +167,8 @@ { 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" };