# HG changeset patch # User Florian Zeitz # Date 1372538410 -7200 # Node ID 579c51cbc12c6219625c6b3932d995d1e1300a83 # Parent bf98912a4f5b1397a2f92191f8b8bcbb77dd59ed mod_admin_adhoc: Fix node of the "Get List of Online Users" command diff -r bf98912a4f5b -r 579c51cbc12c plugins/mod_admin_adhoc.lua --- a/plugins/mod_admin_adhoc.lua Fri Jun 28 20:16:43 2013 +0100 +++ b/plugins/mod_admin_adhoc.lua Sat Jun 29 22:40:10 2013 +0200 @@ -726,7 +726,7 @@ local get_user_password_desc = adhoc_new("Get User Password", "http://jabber.org/protocol/admin#get-user-password", get_user_password_handler, "admin"); local get_user_roster_desc = adhoc_new("Get User Roster","http://jabber.org/protocol/admin#get-user-roster", get_user_roster_handler, "admin"); local get_user_stats_desc = adhoc_new("Get User Statistics","http://jabber.org/protocol/admin#user-stats", get_user_stats_handler, "admin"); -local get_online_users_desc = adhoc_new("Get List of Online Users", "http://jabber.org/protocol/admin#get-online-users", get_online_users_command_handler, "admin"); +local get_online_users_desc = adhoc_new("Get List of Online Users", "http://jabber.org/protocol/admin#get-online-users-list", get_online_users_command_handler, "admin"); local list_modules_desc = adhoc_new("List loaded modules", "http://prosody.im/protocol/modules#list", list_modules_handler, "admin"); local load_module_desc = adhoc_new("Load module", "http://prosody.im/protocol/modules#load", load_module_handler, "admin"); local globally_load_module_desc = adhoc_new("Globally load module", "http://prosody.im/protocol/modules#global-load", globally_load_module_handler, "global_admin");