From 272635a370493997b84fc517865fd4e7757c6e6a Mon Sep 17 00:00:00 2001 From: jove Date: Sat, 20 Aug 2016 19:31:19 +0100 Subject: [PATCH] Fixes an error reporting typo. --- inc/mod/pages.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/mod/pages.php b/inc/mod/pages.php index 966c68ea..f7de6f42 100644 --- a/inc/mod/pages.php +++ b/inc/mod/pages.php @@ -1277,7 +1277,7 @@ function mod_move($originBoard, $postID) { $query = prepare('SELECT `target` FROM ``cites`` WHERE `target_board` = :board AND `board` = :board AND `post` = :post'); $query->bindValue(':board', $originBoard); $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 while ($cite = $query->fetch(PDO::FETCH_ASSOC)) {