diff options
author | Matthew Wild <mwild1@gmail.com> | 2009-05-27 14:03:12 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2009-05-27 14:03:12 +0100 |
commit | 1a1358157d7a45ca710f700c64b80b2389a49e39 (patch) | |
tree | 24ca89fa3671abc030368df8e2e772b5c05d4a1c | |
parent | 6af56f75b136f830b1cb376ae2ac2ceaf789c180 (diff) | |
download | prosody-1a1358157d7a45ca710f700c64b80b2389a49e39.tar.gz prosody-1a1358157d7a45ca710f700c64b80b2389a49e39.zip |
mod_watchregistrations: admin -> admins
-rw-r--r-- | plugins/mod_watchregistrations.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_watchregistrations.lua b/plugins/mod_watchregistrations.lua index 6970422d..eb468388 100644 --- a/plugins/mod_watchregistrations.lua +++ b/plugins/mod_watchregistrations.lua @@ -4,7 +4,7 @@ local host = module:get_host(); local config = require "core.configmanager"; local registration_watchers = config.get(host, "core", "registration_watchers") - or config.get(host, "core", "admin") or {}; + or config.get(host, "core", "admins") or {}; local registration_alert = config.get(host, "core", "registration_notification") or "User $username just registered on $host from $ip"; |