mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-30 18:24:29 +01:00
Merge pull request #464 from discomrade/master
Fixes an error reporting typo in move thread.
This commit is contained in:
commit
fe5b8b7863
@ -1384,7 +1384,7 @@ function mod_move($originBoard, $postID) {
|
|||||||
$query = prepare('SELECT `target` FROM ``cites`` WHERE `target_board` = :board AND `board` = :board AND `post` = :post');
|
$query = prepare('SELECT `target` FROM ``cites`` WHERE `target_board` = :board AND `board` = :board AND `post` = :post');
|
||||||
$query->bindValue(':board', $originBoard);
|
$query->bindValue(':board', $originBoard);
|
||||||
$query->bindValue(':post', $post['id'], PDO::PARAM_INT);
|
$query->bindValue(':post', $post['id'], PDO::PARAM_INT);
|
||||||
$query->execute() or error(db_error($qurey));
|
$query->execute() or error(db_error($query));
|
||||||
|
|
||||||
// correct >>X links
|
// correct >>X links
|
||||||
while ($cite = $query->fetch(PDO::FETCH_ASSOC)) {
|
while ($cite = $query->fetch(PDO::FETCH_ASSOC)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user