From c39c54c2c2764596863e43a6d6ee4b07b52af327 Mon Sep 17 00:00:00 2001 From: Michael Save Date: Thu, 12 Apr 2012 22:14:31 +1000 Subject: [PATCH] invalid $query --- inc/anti-bot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/anti-bot.php b/inc/anti-bot.php index cd2ff795..131a643c 100644 --- a/inc/anti-bot.php +++ b/inc/anti-bot.php @@ -177,7 +177,7 @@ function _create_antibot($board, $thread) { $antibot = new AntiBot(array($board, $thread)); - query('DELETE FROM `antispam` WHERE `expires` < UNIX_TIMESTAMP()') or error(db_error($query)); + query('DELETE FROM `antispam` WHERE `expires` < UNIX_TIMESTAMP()') or error(db_error()); if($thread) $query = prepare('UPDATE `antispam` SET `expires` = UNIX_TIMESTAMP() + :expires WHERE `board` = :board AND `thread` = :thread');