Software /
code /
prosody
Diff
core/modulemanager.lua @ 3765:0731e5432baa
Merge Tobias->trunk
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Fri, 17 Dec 2010 13:50:33 +0000 |
parent | 3758:41f174b61b6a |
child | 3967:1a9bcbaeb55a |
line wrap: on
line diff
--- a/core/modulemanager.lua Tue Dec 14 18:54:55 2010 +0100 +++ b/core/modulemanager.lua Fri Dec 17 13:50:33 2010 +0000 @@ -77,6 +77,13 @@ end local modules = global_modules + host_modules; + -- COMPAT w/ pre 0.8 + if modules:contains("console") then + log("error", "The mod_console plugin has been renamed to mod_admin_telnet. Please update your config."); + modules:remove("console"); + modules:add("admin_telnet"); + end + if component then load(host, component); end