diff options
author | Adam <Adam@anope.org> | 2013-11-09 06:23:05 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-11-09 06:26:02 -0500 |
commit | 9cdf47629faeec64edc77ff0729dc55946ed753c (patch) | |
tree | fd2aeca29beb6c2e5cd8825259ee4184fee7f53f /src/modules/m_spanningtree | |
parent | 541e74bc147f4614f61c2781b7a82f3dbf9c9a32 (diff) |
Fix issue #657, fix sending FNAME with spaces
Diffstat (limited to 'src/modules/m_spanningtree')
-rw-r--r-- | src/modules/m_spanningtree/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/main.cpp b/src/modules/m_spanningtree/main.cpp index 4e189073f..606f8e672 100644 --- a/src/modules/m_spanningtree/main.cpp +++ b/src/modules/m_spanningtree/main.cpp @@ -645,7 +645,7 @@ void ModuleSpanningTree::OnChangeName(User* user, const std::string &gecos) return; parameterlist params; - params.push_back(gecos); + params.push_back(":" + gecos); Utils->DoOneToMany(user->uuid,"FNAME",params); } |