diff options
author | Adam- <Adam-@5417fbe8-f217-4b02-8779-1006273d7864> | 2010-05-28 21:57:15 +0000 |
---|---|---|
committer | Adam- <Adam-@5417fbe8-f217-4b02-8779-1006273d7864> | 2010-05-28 21:57:15 +0000 |
commit | e4189822bc811beeb6e5d738407d7e984eb07976 (patch) | |
tree | 5dd12ea5632e067982529018c42b5379ac6e8220 /src/modules/mysql/db_mysql_execute.cpp | |
parent | a5ddbb0217af75606c7c694e54d771a8bde8d834 (diff) |
Rewrote some of the user nick changing code, enable vhosts for users on nick change, and dont update last seen/last realname when users are identified to an account which doesn't own the nick they are using
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2990 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/modules/mysql/db_mysql_execute.cpp')
-rw-r--r-- | src/modules/mysql/db_mysql_execute.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/mysql/db_mysql_execute.cpp b/src/modules/mysql/db_mysql_execute.cpp index 4ce4e4856..0c7c4de65 100644 --- a/src/modules/mysql/db_mysql_execute.cpp +++ b/src/modules/mysql/db_mysql_execute.cpp @@ -67,7 +67,7 @@ class FakeUser : public User void SendMessage(const std::string &, const std::string &) { } NickCore *Account() const { return nc; } - const bool IsIdentified() const { return nc ? true : false; } + const bool IsIdentified(bool) const { return nc ? true : false; } } SQLUser; class SQLTimer : public Timer |