aboutsummaryrefslogtreecommitdiff
path: root/src/commands/cmd_reloadmodule.cpp
diff options
context:
space:
mode:
authorGravatar danieldg2009-10-17 04:42:01 +0000
committerGravatar danieldg2009-10-17 04:42:01 +0000
commit0388139f5d9dd88d0d26997307b1fda05c5ac016 (patch)
treea7e16a83435634e42bc201ac86464277019e437b /src/commands/cmd_reloadmodule.cpp
parentFix DNSServer not being read on initial config read (diff)
Improve m_httpd_stats; fix incorect parameter order in reloadmodule
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11885 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/commands/cmd_reloadmodule.cpp')
-rw-r--r--src/commands/cmd_reloadmodule.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/cmd_reloadmodule.cpp b/src/commands/cmd_reloadmodule.cpp
index ca972fd18..76920b758 100644
--- a/src/commands/cmd_reloadmodule.cpp
+++ b/src/commands/cmd_reloadmodule.cpp
@@ -58,7 +58,7 @@ CmdResult CommandReloadmodule::Handle (const std::vector<std::string>& parameter
Module* m = ServerInstance->Modules->Find(parameters[0]);
if (m)
{
- ServerInstance->Modules->Reload(m, new ReloadModuleWorker(parameters[0], user->uuid));
+ ServerInstance->Modules->Reload(m, new ReloadModuleWorker(user->uuid, parameters[0]));
return CMD_SUCCESS;
}
else