Merge remote-tracking branch 'origin/development'
authorpk910 <philipp@zoelle1.de>
Sun, 9 Sep 2012 11:29:39 +0000 (13:29 +0200)
committerpk910 <philipp@zoelle1.de>
Sun, 9 Sep 2012 11:29:39 +0000 (13:29 +0200)
src/modules/NeonSpam.mod/cmd_neonspam_set.c

index fdf742a9ac532efc8febf9d2a7c151c6758bbb0f..9681d63db5b5522ce4a4e2e39bf2e5fbb717365c 100644 (file)
@@ -423,7 +423,7 @@ static char* neonspam_cmd_set_reaction_time(struct ClientSocket *client, struct
             reply(textclient, user, "NS_TIMEBAN_DURATION_TOO_SHORT", 30);
             return NULL;
         }
-        printf_mysql_query("UPDATE `channels` SET `%s` = '%s' WHERE `channel_id` = '%d' ", mysqlfield, argument, chan->channel_id);
+        printf_mysql_query("UPDATE `channels` SET `%s` = '%d' WHERE `channel_id` = '%d' ", mysqlfield, duration, chan->channel_id);
     } else {
         if(neonspam_settings_row) {
             duration = atoi(neonspam_settings_row[mysqlindex] ? neonspam_settings_row[mysqlindex] : neonspam_settings_defaults[mysqlindex]);