diff options
author | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2006-12-09 23:15:14 +0000 |
---|---|---|
committer | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2006-12-09 23:15:14 +0000 |
commit | bcd28b951d740f0d7846c81adbea93439ed28eaf (patch) | |
tree | c4caf5cd0dd3fb2b4c64242accea46946695b07d | |
parent | 10aac18c8ec6a16100da57f87ab71d86f60f4b8c (diff) |
BUILD : 1.7.17 (1203) BUGS : NOTES : Small MySQL fix which should have already been in
git-svn-id: svn://svn.anope.org/anope/trunk@1203 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@922 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | src/mysql.c | 2 | ||||
-rw-r--r-- | version.log | 6 |
2 files changed, 6 insertions, 2 deletions
diff --git a/src/mysql.c b/src/mysql.c index 19db1e419..c5016aa2a 100644 --- a/src/mysql.c +++ b/src/mysql.c @@ -899,7 +899,7 @@ void db_mysql_save_news(NewsItem * ni) q_text = db_mysql_quote(ni->text); q_who = db_mysql_quote(ni->who); - db_mysql_try("UPDATE anope_os_news SET ntext = '%s', who = '%s' " + db_mysql_try("UPDATE anope_os_news SET ntext = '%s', who = '%s', " "active = 1 WHERE type = %d AND num = %d AND `time` = %d", q_text, q_who, ni->type, ni->num, (int) ni->time); if (mysql_affected_rows(mysql) == 0) { diff --git a/version.log b/version.log index cd3fda0eb..0bf7d7ae5 100644 --- a/version.log +++ b/version.log @@ -9,10 +9,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="17" VERSION_EXTRA="-svn" -VERSION_BUILD="1202" +VERSION_BUILD="1203" # $Log$ # +# BUILD : 1.7.17 (1203) +# BUGS : +# NOTES : Small MySQL fix which should have already been in +# # BUILD : 1.7.17 (1202) # BUGS : 640 # NOTES : Fixed langfiles having CHANAKILL instead of CHANKILL in the chankill syntax lines |