mod_admin_adhoc: Add required to field in user deletion form too

This commit is contained in:
Kim Alvefur 2014-09-29 11:18:04 +02:00
parent fc40eedab4
commit 74cbb01e3a

View file

@ -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)