mod_pubsub/pubsub.lib: Fix accidental name/var swap (thanks scansion)

This commit is contained in:
Matthew Wild 2023-03-22 16:44:47 +00:00
parent 5f98d0cc23
commit 2b72eb4211

View file

@ -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" };