summaryrefslogtreecommitdiff
path: root/src/nickserv.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2011-03-30 23:59:57 -0400
committerAdam <Adam@anope.org>2011-03-30 23:59:57 -0400
commit8dec0c1f1798845a47914570869ed94ce44ce58d (patch)
treec2e016c51195c702f6fd08db91c45673dff3e3da /src/nickserv.cpp
parent8098ed899a3648897c0de925c974e21883a76b8d (diff)
Fixed bug #1258, more Windows stuff, and more language strings
Diffstat (limited to 'src/nickserv.cpp')
-rw-r--r--src/nickserv.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nickserv.cpp b/src/nickserv.cpp
index 0c036f564..870ea6d2c 100644
--- a/src/nickserv.cpp
+++ b/src/nickserv.cpp
@@ -208,9 +208,9 @@ int validate_user(User *u)
if (u->IsRecognized() || !na->nc->HasFlag(NI_KILL_IMMED))
{
if (na->nc->HasFlag(NI_SECURE))
- u->SendMessage(NickServ, _(NICK_IS_SECURE), Config->s_NickServ.c_str());
+ u->SendMessage(NickServ, _(NICK_IS_SECURE), Config->UseStrictPrivMsgString.c_str(), Config->s_NickServ.c_str());
else
- u->SendMessage(NickServ, _(NICK_IS_REGISTERED), Config->s_NickServ.c_str());
+ u->SendMessage(NickServ, _(NICK_IS_REGISTERED), Config->UseStrictPrivMsgString.c_str(), Config->s_NickServ.c_str());
}
if (na->nc->HasFlag(NI_KILLPROTECT) && !u->IsRecognized())