diff options
author | Matthew Wild <mwild1@gmail.com> | 2010-02-22 01:02:16 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2010-02-22 01:02:16 +0000 |
commit | 061ca9456456cca4c21af4feb0f771ff338865d7 (patch) | |
tree | da03aad827e046c50c3ec0352c2bd13a14ecf219 /plugins | |
parent | a12fea9a9b9e1f2c302213e77e646ccc64b3db21 (diff) | |
download | prosody-061ca9456456cca4c21af4feb0f771ff338865d7.tar.gz prosody-061ca9456456cca4c21af4feb0f771ff338865d7.zip |
mod_console: Uncomment the help for server:shutdown() - thanks darkrain
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_console.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_console.lua b/plugins/mod_console.lua index 82045232..d8362a07 100644 --- a/plugins/mod_console.lua +++ b/plugins/mod_console.lua @@ -192,7 +192,7 @@ function commands.help(session, data) elseif section == "server" then print [[server:version() - Show the server's version number]] print [[server:uptime() - Show how long the server has been running]] - --print [[server:shutdown(reason) - Shut down the server, with an optional reason to be broadcast to all connections]] + print [[server:shutdown(reason) - Shut down the server, with an optional reason to be broadcast to all connections]] elseif section == "config" then print [[config:reload() - Reload the server configuration. Modules may need to be reloaded for changes to take effect.]] elseif section == "console" then |