diff options
| author | 2018-11-18 13:12:07 +0000 | |
|---|---|---|
| committer | 2018-11-18 13:12:07 +0000 | |
| commit | 1ec87c328f6ef2d9d64a2eb782cdd2916dd93d2d (patch) | |
| tree | 72c6ab29c210438ba2fd477954c025c692a1362f /src/helperfuncs.cpp | |
| parent | Fix sending DNSBL error snotices when a user isn't DNSBLed. (diff) | |
| download | inspircd++-1ec87c328f6ef2d9d64a2eb782cdd2916dd93d2d.tar.gz inspircd++-1ec87c328f6ef2d9d64a2eb782cdd2916dd93d2d.tar.bz2 inspircd++-1ec87c328f6ef2d9d64a2eb782cdd2916dd93d2d.zip | |
Fix single backslashes in the MOTD erroneously being removed.
Diffstat (limited to 'src/helperfuncs.cpp')
| -rw-r--r-- | src/helperfuncs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/helperfuncs.cpp b/src/helperfuncs.cpp index 6830612c7..9a6701b54 100644 --- a/src/helperfuncs.cpp +++ b/src/helperfuncs.cpp @@ -159,7 +159,7 @@ void InspIRCd::ProcessColors(file_cache& input) special_chars("\\s", "\x1E"), // Strikethrough special_chars("\\u", "\x1F"), // Underline special_chars("\\x", "\x0F"), // Reset - special_chars("\\", "") + special_chars("", "") }; for(file_cache::iterator it = input.begin(), it_end = input.end(); it != it_end; it++) |
