diff options
author | ribosome ribosome@31f1291d-b8d6-0310-a050-a5561fc1590b <ribosome ribosome@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-03-28 15:06:22 +0000 |
---|---|---|
committer | ribosome ribosome@31f1291d-b8d6-0310-a050-a5561fc1590b <ribosome ribosome@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-03-28 15:06:22 +0000 |
commit | b58eb5f7f25171538b91abc389fc1bf1835bada9 (patch) | |
tree | 2a5e6671755bc581104d2962a82cd44d358b6d16 | |
parent | 91ab20aefb9b78d54541a367703c6610b297a6cc (diff) |
BUILD : 1.7.8 (648) BUGS : 337 NOTES : Fixed the db query for anope_cs_akicks in display name change function.
git-svn-id: svn://svn.anope.org/anope/trunk@648 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@496 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | src/rdb.c | 2 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 7 insertions, 2 deletions
@@ -10,6 +10,7 @@ Provided by Anope Dev. <dev@anope.org> - 2005 02/13 A Internal Event support, see EVENTS in the doc folder for help [ #00] 02/05 A Support for Unreal 3.2 +I channel mode. [ #00] 02/03 A Merged anope-win32 branch into the main, now Win32 ready. [ #00] +03/28 F Fixed the change display name function to update correct db table.[#337] 03/28 F Changed the ultimate3 usermode for SRA. [#326] 03/28 F Segfault on joining unregistered channels in some cases. [#327] 03/28 F Adding and removing modes are now merged per user while syncing. [#329] @@ -136,7 +136,7 @@ int rdb_ns_set_display(char *newnick, char *oldnick) /* Change the display on ChanServ AKICK list */ snprintf(buf, sizeof(buf), - "UPDATE anope_cs_access SET creator='%s' WHERE creator='%s'", + "UPDATE anope_cs_akicks SET creator='%s' WHERE creator='%s'", newnick, oldnick); db_mysql_query(buf); diff --git a/version.log b/version.log index 06108826d..a4bb639ec 100644 --- a/version.log +++ b/version.log @@ -8,10 +8,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="8" -VERSION_BUILD="647" +VERSION_BUILD="648" # $Log$ # +# BUILD : 1.7.8 (648) +# BUGS : 337 +# NOTES : Fixed the db query for anope_cs_akicks in display name change function. +# # BUILD : 1.7.8 (647) # BUGS : 326 # NOTES : Changed usermode for ultimate3 SRA to +Z |