diff options
author | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2006-12-27 15:44:30 +0000 |
---|---|---|
committer | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2006-12-27 15:44:30 +0000 |
commit | c0c0a6441e5ad39116856b8885ed1ea8b91cdb2e (patch) | |
tree | d659b53676779dc830852675cc5a8c869d3a9ce5 /src | |
parent | 4e409e31cb648962372b4b2b7315ab4e4f5478de (diff) |
BUILD : 1.7.17 (1211) BUGS : 650 NOTES : Fixed ModuleNoticeLang which was formatting the string twice
git-svn-id: svn://svn.anope.org/anope/trunk@1211 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@930 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src')
-rw-r--r-- | src/modules.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules.c b/src/modules.c index 44d7e4815..a57824114 100644 --- a/src/modules.c +++ b/src/modules.c @@ -2627,7 +2627,7 @@ void moduleNoticeLang(char *source, User * u, int number, ...) if (*s) *s++ = '\0'; strscpy(outbuf, t, sizeof(outbuf)); - notice(source, u->nick, outbuf); + notice(source, u->nick, "%s", outbuf); } free(buf); } else { |