mirror of
https://github.com/anope/anope.git
synced 2026-07-06 22:23:12 +02:00
Added more useful functions to our LDAP API, allow adding newly registered accounts to LDAP, removed some unnecessary OnPre events and fixed unloading all modules
This commit is contained in:
@@ -163,11 +163,11 @@ class MySQLLiveModule : public Module
|
||||
MySQLLiveModule(const Anope::string &modname, const Anope::string &creator) :
|
||||
Module(modname, creator), SQL("mysql/main"), ACS("asynch_commands")
|
||||
{
|
||||
Implementation i[] = { I_OnFindChan, I_OnFindNick, I_OnFindCore, I_OnPreShutdown };
|
||||
Implementation i[] = { I_OnFindChan, I_OnFindNick, I_OnFindCore, I_OnShutdown };
|
||||
ModuleManager::Attach(i, this, 4);
|
||||
}
|
||||
|
||||
void OnPreShutdown()
|
||||
void OnShutdown()
|
||||
{
|
||||
Implementation i[] = { I_OnFindChan, I_OnFindNick, I_OnFindCore };
|
||||
for (size_t j = 0; j < 3; ++j)
|
||||
|
||||
Reference in New Issue
Block a user