aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_admin_adhoc.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2014-09-29 11:18:04 +0200
committerKim Alvefur <zash@zash.se>2014-09-29 11:18:04 +0200
commit74cbb01e3af0d8e22fd8f067a9f2a0f12e5d6749 (patch)
treef0c0e04fd44432f0ef526a858b5be30770892025 /plugins/mod_admin_adhoc.lua
parentfc40eedab484ec27486c5452b77e57d8884851a8 (diff)
downloadprosody-74cbb01e3af0d8e22fd8f067a9f2a0f12e5d6749.tar.gz
prosody-74cbb01e3af0d8e22fd8f067a9f2a0f12e5d6749.zip
mod_admin_adhoc: Add required to field in user deletion form too
Diffstat (limited to 'plugins/mod_admin_adhoc.lua')
-rw-r--r--plugins/mod_admin_adhoc.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_admin_adhoc.lua b/plugins/mod_admin_adhoc.lua
index 704b2685..232fa5f7 100644
--- a/plugins/mod_admin_adhoc.lua
+++ b/plugins/mod_admin_adhoc.lua
@@ -118,7 +118,7 @@ local delete_user_layout = dataforms_new{
instructions = "Fill out this form to delete a user.";
{ name = "FORM_TYPE", type = "hidden", value = "http://jabber.org/protocol/admin" };
- { name = "accountjids", type = "jid-multi", label = "The Jabber ID(s) to delete" };
+ { name = "accountjids", type = "jid-multi", required = true, label = "The Jabber ID(s) to delete" };
};
local delete_user_command_handler = adhoc_simple(delete_user_layout, function(fields, err)