1
0
mirror of https://github.com/anope/anope.git synced 2026-06-12 17:04:47 +02:00

BUILD : 1.7.1 (54) NOTES : Added one more fix for MySQL nick password.

git-svn-id: svn://svn.anope.org/anope/trunk@54 31f1291d-b8d6-0310-a050-a5561fc1590b


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@35 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b
2004-04-16 18:14:21 +00:00
parent 562a146eb2
commit d74d3e1ad8
2 changed files with 5 additions and 2 deletions
+1 -1
View File
@@ -277,7 +277,7 @@ void db_mysql_save_ns_core(NickCore * nc)
snprintf(sqlcmd, MAX_SQL_BUF,
"INSERT DELAYED INTO anope_ns_core (display,pass,email,greet,icq,url,flags,"
"language,accesscount,memocount,memomax,channelcount,channelmax,active)"
" VALUES ('%s','%s','%s','%s','%d','%s','%d','%d','%d','%d','%d','%d','%d','1')",
" VALUES ('%s',%s,'%s','%s','%d','%s','%d','%d','%d','%d','%d','%d','%d','1')",
cnick, epass, cemail, cgreet, nc->icq, curl, nc->flags,
nc->language, nc->accesscount, nc->memos.memocount,
nc->memos.memomax, nc->channelcount, nc->channelmax);
+4 -1
View File
@@ -8,11 +8,14 @@
VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="1"
VERSION_BUILD="53"
VERSION_BUILD="54"
VERSION_EXTRA=""
# $Log$
#
# BUILD : 1.7.1 (54)
# NOTES : Added one more fix for MySQL nick password.
#
# BUILD : 1.7.1 (53)
# BUGS : 10
# NOTES : Fixed previous MySQL fix for saving nick passwords.