Browse Source

Critical bug: users could not report OP posts, only replies (thanks to ctrlcctrlv for finding this)

pull/40/head
Michael Foster 11 years ago
parent
commit
5836cd23d2
  1. 2
      post.php

2
post.php

@ -117,7 +117,6 @@ if (isset($_POST['delete'])) {
$thread = $query->fetchColumn();
if ($thread) {
if ($config['syslog'])
_syslog(LOG_INFO, 'Reported post: ' .
'/' . $board['dir'] . $config['dir']['res'] . sprintf($config['file_page'], $thread ? $thread : $id) . ($thread ? '#' . $id : '') .
@ -131,7 +130,6 @@ if (isset($_POST['delete'])) {
$query->bindValue(':reason', $reason, PDO::PARAM_STR);
$query->execute() or error(db_error($query));
}
}
$is_mod = isset($_POST['mod']) && $_POST['mod'];
$root = $is_mod ? $config['root'] . $config['file_mod'] . '?/' : $config['root'];

Loading…
Cancel
Save