summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mysql.c2
-rw-r--r--version.log5
2 files changed, 5 insertions, 2 deletions
diff --git a/mysql.c b/mysql.c
index e1c5f5b22..e04d2b75e 100644
--- a/mysql.c
+++ b/mysql.c
@@ -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);
diff --git a/version.log b/version.log
index ab7c5f750..be2d81f10 100644
--- a/version.log
+++ b/version.log
@@ -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.