diff options
author | DukePyrolator <DukePyrolator@anope.org> | 2011-03-26 08:20:05 +0100 |
---|---|---|
committer | DukePyrolator <DukePyrolator@anope.org> | 2011-03-26 08:20:05 +0100 |
commit | 365769d14cb953657fe81167674a4d2d155e4a7e (patch) | |
tree | d8221f2e8a3f3a7db2e0397b416bf9b9aea8252c /modules/core/cs_topic.cpp | |
parent | 01b901eba19ba5cf5e4220634f705a13c81acce8 (diff) |
replaced all %R with %s in the language strings
Diffstat (limited to 'modules/core/cs_topic.cpp')
-rw-r--r-- | modules/core/cs_topic.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/core/cs_topic.cpp b/modules/core/cs_topic.cpp index 8fd23f7f1..c832d0ca4 100644 --- a/modules/core/cs_topic.cpp +++ b/modules/core/cs_topic.cpp @@ -54,11 +54,11 @@ class CommandCSTopic : public Command "Causes %s to set the channel topic to the one\n" "specified. If \002topic\002 is not given, then an empty topic\n" "is set. This command is most useful in conjunction\n" - "with \002SET TOPICLOCK\002. See \002%R%s HELP SET TOPICLOCK\002\n" + "with \002SET TOPICLOCK\002. See \002%s%s HELP SET TOPICLOCK\002\n" "for more information.\n" " \n" "By default, limited to those with founder access on the\n" - "channel."), ChanServ->nick.c_str(), ChanServ->nick.c_str()); + "channel."), ChanServ->nick.c_str(), Config->UseStrictPrivMsgString.c_str(), ChanServ->nick.c_str()); return true; } |