diff options
| author | 2007-05-03 22:05:56 +0000 | |
|---|---|---|
| committer | 2007-05-03 22:05:56 +0000 | |
| commit | 2d659114b7c8d91c70d327259d0be63de006ec8c (patch) | |
| tree | cfd7ace25e4857c4d2f8094ac4d03b7a5980db5b /src/modules/m_httpd_stats.cpp | |
| parent | Fix for new api (diff) | |
Fix broken modules (broken due to api change)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6860 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_httpd_stats.cpp')
| -rw-r--r-- | src/modules/m_httpd_stats.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_httpd_stats.cpp b/src/modules/m_httpd_stats.cpp index ac49fccf8..a72c94c47 100644 --- a/src/modules/m_httpd_stats.cpp +++ b/src/modules/m_httpd_stats.cpp @@ -178,7 +178,7 @@ class ModuleHttpStats : public Module this->changed = true; } - void OnUserJoin(userrec* user, chanrec* channel) + void OnUserJoin(userrec* user, chanrec* channel, bool &silent) { StatsIter a = sh->find(channel->name); if (a != sh->end()) @@ -193,7 +193,7 @@ class ModuleHttpStats : public Module this->changed = true; } - void OnUserPart(userrec* user, chanrec* channel, const std::string &partmessage) + void OnUserPart(userrec* user, chanrec* channel, const std::string &partmessage, bool &silent) { StatsIter a = sh->find(channel->name); if (a != sh->end()) |
