diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-04-29 21:29:28 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-04-29 21:29:28 +0000 |
commit | ddbc70ec8e1fe30899458fa2c833a1e66fc9b14d (patch) | |
tree | d6e371972e6cadf5b4acd332ec95f74033176add /src | |
parent | 4564ed215cfde77e648a1aa8110ebe5de1252764 (diff) |
Backport fix for stripcolour not stripping colour codes, reported by jackmcbarn - thanks. Also make rebasing neater, output to current console/output window of visual studio, not a new console
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9592 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/m_stripcolor.cpp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/modules/m_stripcolor.cpp b/src/modules/m_stripcolor.cpp index 9b3f8c2f1..97df7f193 100644 --- a/src/modules/m_stripcolor.cpp +++ b/src/modules/m_stripcolor.cpp @@ -112,7 +112,7 @@ class ModuleStripColor : public Module /* refactor this completely due to SQUIT bug since the old code would strip last char and replace with \0 --peavey */ int seq = 0; std::string::iterator i,safei; - for (i = sentence.begin(); i != sentence.end(); ++i) + for (i = sentence.begin(); i != sentence.end();) { if ((*i == 3)) seq = 1; @@ -134,12 +134,18 @@ class ModuleStripColor : public Module safei = i; --i; sentence.erase(safei); + ++i; + ServerInstance->Logs->Log("m_stripcolor", DEBUG, "Sentence: %s iter pos %c", sentence.c_str(), *i); } else { sentence.erase(i); i = sentence.begin(); - } } + ServerInstance->Logs->Log("m_stripcolor", DEBUG, "Sentence begin(): %s iter pos %c", sentence.c_str(), *i); + } + } + else + ++i; } } |