From 75f7ebd49b60c679e53a7afec31281df65cfebe7 Mon Sep 17 00:00:00 2001 From: Savetheinternet Date: Tue, 13 Dec 2011 20:15:46 +1100 Subject: [PATCH] bugfix: PHP notices on raw posts --- post.php | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/post.php b/post.php index 224a2ebd..c76f1f78 100644 --- a/post.php +++ b/post.php @@ -561,13 +561,15 @@ $id = post($post, $OP); - foreach($post['tracked_cites'] as $cite) { - $query = prepare('INSERT INTO `cites` VALUES (:board, :post, :target_board, :target)'); - $query->bindValue(':board', $board['uri']); - $query->bindValue(':post', $id, PDO::PARAM_INT); - $query->bindValue(':target_board',$cite[0]); - $query->bindValue(':target', $cite[1], PDO::PARAM_INT); - $query->execute() or error(db_error($query)); + if(isset($post['tracked_cites'])) { + foreach($post['tracked_cites'] as $cite) { + $query = prepare('INSERT INTO `cites` VALUES (:board, :post, :target_board, :target)'); + $query->bindValue(':board', $board['uri']); + $query->bindValue(':post', $id, PDO::PARAM_INT); + $query->bindValue(':target_board',$cite[0]); + $query->bindValue(':target', $cite[1], PDO::PARAM_INT); + $query->execute() or error(db_error($query)); + } } buildThread(($OP?$id:$post['thread']));