bugfix lol

This commit is contained in:
Michael Foster 2013-09-07 00:04:22 +10:00
parent 33737fd723
commit ecda7abe92

View File

@ -768,7 +768,7 @@ function insertFloodPost(array $post) {
$query->bindValue(':filehash', $post['filehash']);
else
$query->bindValue(':filehash', null, PDO::PARAM_NULL);
$query->bindValue(':isreply', !$post['op']);
$query->bindValue(':isreply', !$post['op'], PDO::PARAM_INT);
$query->execute() or error(db_error($query));
}