diff options
author | Adam <Adam@anope.org> | 2011-03-30 23:59:57 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-03-30 23:59:57 -0400 |
commit | 8dec0c1f1798845a47914570869ed94ce44ce58d (patch) | |
tree | c2e016c51195c702f6fd08db91c45673dff3e3da /src/language.cpp | |
parent | 8098ed899a3648897c0de925c974e21883a76b8d (diff) |
Fixed bug #1258, more Windows stuff, and more language strings
Diffstat (limited to 'src/language.cpp')
-rw-r--r-- | src/language.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/language.cpp b/src/language.cpp index 8a08ebdcc..250415e9f 100644 --- a/src/language.cpp +++ b/src/language.cpp @@ -117,6 +117,6 @@ const char *anope_gettext(const char *string) void SyntaxError(CommandSource &source, const Anope::string &command, const Anope::string &message) { source.Reply(_("Syntax: \002%s\002"), message.c_str()); - source.Reply(_(_(MORE_INFO)), source.owner->nick.c_str(), command.c_str()); + source.Reply(_(_(MORE_INFO)), Config->UseStrictPrivMsgString.c_str(), source.owner->nick.c_str(), command.c_str()); } |