diff options
| author | 2008-08-10 16:37:31 +0000 | |
|---|---|---|
| committer | 2008-08-10 16:37:31 +0000 | |
| commit | c0090ae7eb5a2d615f5272e3ba71aba70ae486cd (patch) | |
| tree | d91d1566b9104e09e64895901cd86dcfa2de1974 /src/modules/m_customtitle.cpp | |
| parent | Unbreak compile for real. (diff) | |
Forward port r10133.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10134 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_customtitle.cpp')
| -rw-r--r-- | src/modules/m_customtitle.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/modules/m_customtitle.cpp b/src/modules/m_customtitle.cpp index b15b308d0..769b8ec4d 100644 --- a/src/modules/m_customtitle.cpp +++ b/src/modules/m_customtitle.cpp @@ -125,8 +125,7 @@ class ModuleCustomTitle : public Module { /* Insert our numeric before 312 */ std::string* ctitle; - dest->GetExt("ctitle", ctitle); - if (ctitle) + if (dest->GetExt("ctitle", ctitle)) { ServerInstance->SendWhoisLine(user, dest, 320, "%s %s :%s",user->nick.c_str(), dest->nick.c_str(), ctitle->c_str()); } |
