Browse Source

bugfix lol

pull/40/head
Michael Foster 11 years ago
parent
commit
ecda7abe92
  1. 2
      inc/functions.php

2
inc/functions.php

@ -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));
}

Loading…
Cancel
Save