[8311] Prevent multiline fake messages in chat. Author: horogandris

--HG--
branch : trunk
This commit is contained in:
megamage
2009-08-06 17:42:44 -05:00
parent b35e7ac28d
commit e8556b879d
2 changed files with 8 additions and 8 deletions

View File

@@ -131,7 +131,7 @@ Tokens StrSplit(const std::string &src, const std::string &sep)
void stripLineInvisibleChars(std::string &str)
{
static std::string invChars = " \t\7";
static std::string invChars = " \t\7\n";
size_t wpos = 0;