summaryrefslogtreecommitdiff
path: root/src/users.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2010-10-31 20:47:34 -0400
committerAdam <Adam@anope.org>2010-10-31 20:47:34 -0400
commite3f368f67b95438f39c0f459505af0e19ad364ad (patch)
tree0eba7020e2c95ef631049d97669ee4e7adffc239 /src/users.cpp
parent2170823059c176a79efd5e99fcfa53524c2d5536 (diff)
Fixed replacing %R's in email messages and fixed anopesmtp to really work
Diffstat (limited to 'src/users.cpp')
-rw-r--r--src/users.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/users.cpp b/src/users.cpp
index 6ab771ec1..12502efae 100644
--- a/src/users.cpp
+++ b/src/users.cpp
@@ -253,11 +253,6 @@ void User::SendMessage(BotInfo *source, LanguageString message, ...) const
Anope::string m = GetString(this, message);
- if (Config->UseStrictPrivMsg)
- m = m.replace_all_cs("%R", "/");
- else
- m = m.replace_all_cs("%R", "/msg ");
-
m = m.replace_all_cs("%S", source->nick);
if (m.length() >= 4096)