diff options
-rw-r--r-- | modules/pseudoclients/chanserv.cpp | 6 | ||||
-rw-r--r-- | modules/pseudoclients/nickserv.cpp | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/modules/pseudoclients/chanserv.cpp b/modules/pseudoclients/chanserv.cpp index 9a3e309a7..ed185357c 100644 --- a/modules/pseudoclients/chanserv.cpp +++ b/modules/pseudoclients/chanserv.cpp @@ -250,12 +250,12 @@ class ChanServCore : public Module, public ChanServService { if (!params.empty() || source.c || source.service != *ChanServ) return; - time_t expire = Config->GetModule(this)->Get<time_t>("expire", "14d"); - if (expire >= 86400) + time_t chanserv_expire = Config->GetModule(this)->Get<time_t>("expire", "14d"); + if (chanserv_expire >= 86400) source.Reply(_(" \n" "Note that any channel which is not used for %d days\n" "(i.e. which no user on the channel's access list enters\n" - "for that period of time) will be automatically dropped."), expire / 86400); + "for that period of time) will be automatically dropped."), chanserv_expire / 86400); if (source.IsServicesOper()) source.Reply(_(" \n" "Services Operators can also, depending on their access drop\n" diff --git a/modules/pseudoclients/nickserv.cpp b/modules/pseudoclients/nickserv.cpp index 234333025..3a6192244 100644 --- a/modules/pseudoclients/nickserv.cpp +++ b/modules/pseudoclients/nickserv.cpp @@ -448,7 +448,7 @@ class NickServCore : public Module, public NickServService "Services Operators can also drop any nickname without needing\n" "to identify for the nick, and may view the access list for\n" "any nickname.")); - time_t nickserv_expire = Config->GetModule(this)->Get<time_t>("expire"); + time_t nickserv_expire = Config->GetModule(this)->Get<time_t>("expire", "21d"); if (nickserv_expire >= 86400) source.Reply(_(" \n" "Accounts that are not used anymore are subject to\n" @@ -489,7 +489,7 @@ class NickServCore : public Module, public NickServService if (Anope::NoExpire || Anope::ReadOnly) return; - time_t nickserv_expire = Config->GetModule(this)->Get<time_t>("expire"); + time_t nickserv_expire = Config->GetModule(this)->Get<time_t>("expire", "21d"); for (nickalias_map::const_iterator it = NickAliasList->begin(), it_end = NickAliasList->end(); it != it_end; ) { @@ -520,7 +520,7 @@ class NickServCore : public Module, public NickServService { if (!na->nc->HasExt("UNCONFIRMED")) { - time_t nickserv_expire = Config->GetModule(this)->Get<time_t>("expire"); + time_t nickserv_expire = Config->GetModule(this)->Get<time_t>("expire", "21d"); if (!na->HasExt("NS_NO_EXPIRE") && nickserv_expire && !Anope::NoExpire && na->last_seen != Anope::CurTime) info[_("Expires")] = Anope::strftime(na->last_seen + nickserv_expire, source.GetAccount()); } |