From: brain Date: Thu, 24 Aug 2006 18:12:51 +0000 (+0000) Subject: Remove OnPostConnect here, it was being used under the assumption that it still did... X-Git-Tag: v2.0.23~7313 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=eb754aea2728a00734e2051bca6fd9651d92c4a2;p=user%2Fhenk%2Fcode%2Finspircd.git Remove OnPostConnect here, it was being used under the assumption that it still did global connects git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5015 e03df62e-2008-0410-955e-edbf42e46eb7 --- diff --git a/src/modules/extra/m_sqllog.cpp b/src/modules/extra/m_sqllog.cpp index e663ae3a0..62d4baeeb 100644 --- a/src/modules/extra/m_sqllog.cpp +++ b/src/modules/extra/m_sqllog.cpp @@ -367,11 +367,6 @@ class ModuleSQLLog : public Module AddLogEntry(LT_CONNECT,user->nick,user->host,user->server); } - virtual void OnPostConnect(userrec* user) - { - AddLogEntry(LT_CONNECT,user->nick,user->host,user->server); - } - virtual void OnUserQuit(userrec* user, const std::string &reason) { AddLogEntry(LT_DISCONNECT,user->nick,user->host,user->server);