Replaced bindParam() with bindValue()

This commit is contained in:
Savetheinternet 2010-12-18 15:07:07 +11:00
parent 323fe4e61c
commit aa88e0984e

View File

@ -50,7 +50,7 @@
global $board;
$query = prepare(sprintf("SELECT 1 FROM `posts_%s` WHERE `id` = :id AND `thread` IS NULL LIMIT 1", $board['uri']));
$query->bindParam(':id', $id, PDO::PARAM_INT);
$query->bindValue(':id', $id, PDO::PARAM_INT);
$query->execute() or error(db_error());
if($query->rowCount()) {