diff options
| author | 2013-11-09 06:23:05 -0500 | |
|---|---|---|
| committer | 2013-11-09 06:26:02 -0500 | |
| commit | 9cdf47629faeec64edc77ff0729dc55946ed753c (patch) | |
| tree | fd2aeca29beb6c2e5cd8825259ee4184fee7f53f /src/modules/m_spanningtree/main.cpp | |
| parent | Fix m_silence looking for maxentries in <showwhois> instead of <silence>. (diff) | |
Fix issue #657, fix sending FNAME with spaces
Diffstat (limited to 'src/modules/m_spanningtree/main.cpp')
| -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); } |
