diff options
| author | 2007-01-01 20:53:20 +0000 | |
|---|---|---|
| committer | 2007-01-01 20:53:20 +0000 | |
| commit | 42d5b9571eff06b0c33093dc9118c29f9603fd2b (patch) | |
| tree | 97429d79e59c3f14d5fea75e2a25524af2bd842a /src/modules/m_remove.cpp | |
| parent | Make sure that if an oper opers up and has an swhois in their opertype or ope... (diff) | |
| download | inspircd++-42d5b9571eff06b0c33093dc9118c29f9603fd2b.tar.gz inspircd++-42d5b9571eff06b0c33093dc9118c29f9603fd2b.tar.bz2 inspircd++-42d5b9571eff06b0c33093dc9118c29f9603fd2b.zip | |
Fix to allow for OnRehash to know what user initiated the rehash
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6207 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_remove.cpp')
| -rw-r--r-- | src/modules/m_remove.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_remove.cpp b/src/modules/m_remove.cpp index e7aa9f7a9..16cc8a679 100644 --- a/src/modules/m_remove.cpp +++ b/src/modules/m_remove.cpp @@ -262,7 +262,7 @@ class ModuleRemove : public Module mycommand2 = new cmd_fpart(ServerInstance, supportnokicks); ServerInstance->AddCommand(mycommand); ServerInstance->AddCommand(mycommand2); - OnRehash(""); + OnRehash(NULL,""); } void Implements(char* List) @@ -275,7 +275,7 @@ class ModuleRemove : public Module output.append(" REMOVE"); } - virtual void OnRehash(const std::string&) + virtual void OnRehash(userrec* user, const std::string&) { ConfigReader conf(ServerInstance); supportnokicks = conf.ReadFlag("remove", "supportnokicks", 0); |
