From 0dd36bda5409124d4986ddf6a83c8804d2b72318 Mon Sep 17 00:00:00 2001 From: Savetheinternet Date: Thu, 22 Dec 2011 15:46:19 +1100 Subject: [PATCH] logical error syslog()ing reports --- post.php | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/post.php b/post.php index ce1e6772..04df089d 100644 --- a/post.php +++ b/post.php @@ -118,16 +118,14 @@ $query->bindValue(':id', $id, PDO::PARAM_INT); $query->execute() or error(db_error($query)); - if($config['syslog']) { - $post = $query->fetch(); - - _syslog(LOG_INFO, 'Reported post: ' . - '/' . $board['dir'] . $config['dir']['res'] . sprintf($config['file_page'], $post['thread'] ? $post['thread'] : $id) . ($post['thread'] ? '#' . $id : '') . - ' for "' . $reason . '"' - ); - } + $post = $query->fetch(); - if($post = $query->fetch()) { + if($post) { + if($config['syslog']) + _syslog(LOG_INFO, 'Reported post: ' . + '/' . $board['dir'] . $config['dir']['res'] . sprintf($config['file_page'], $post['thread'] ? $post['thread'] : $id) . ($post['thread'] ? '#' . $id : '') . + ' for "' . $reason . '"' + ); $query = prepare("INSERT INTO `reports` VALUES (NULL, :time, :ip, :board, :post, :reason)"); $query->bindValue(':time', time(), PDO::PARAM_INT); $query->bindValue(':ip', $_SERVER['REMOTE_ADDR'], PDO::PARAM_STR);