mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-24 07:30:10 +01:00
Critical bug: users could not report OP posts, only replies (thanks to ctrlcctrlv for finding this)
This commit is contained in:
parent
faf1d42a08
commit
5836cd23d2
26
post.php
26
post.php
@ -117,20 +117,18 @@ if (isset($_POST['delete'])) {
|
|||||||
|
|
||||||
$thread = $query->fetchColumn();
|
$thread = $query->fetchColumn();
|
||||||
|
|
||||||
if ($thread) {
|
if ($config['syslog'])
|
||||||
if ($config['syslog'])
|
_syslog(LOG_INFO, 'Reported post: ' .
|
||||||
_syslog(LOG_INFO, 'Reported post: ' .
|
'/' . $board['dir'] . $config['dir']['res'] . sprintf($config['file_page'], $thread ? $thread : $id) . ($thread ? '#' . $id : '') .
|
||||||
'/' . $board['dir'] . $config['dir']['res'] . sprintf($config['file_page'], $thread ? $thread : $id) . ($thread ? '#' . $id : '') .
|
' for "' . $reason . '"'
|
||||||
' for "' . $reason . '"'
|
);
|
||||||
);
|
$query = prepare("INSERT INTO ``reports`` VALUES (NULL, :time, :ip, :board, :post, :reason)");
|
||||||
$query = prepare("INSERT INTO ``reports`` VALUES (NULL, :time, :ip, :board, :post, :reason)");
|
$query->bindValue(':time', time(), PDO::PARAM_INT);
|
||||||
$query->bindValue(':time', time(), PDO::PARAM_INT);
|
$query->bindValue(':ip', $_SERVER['REMOTE_ADDR'], PDO::PARAM_STR);
|
||||||
$query->bindValue(':ip', $_SERVER['REMOTE_ADDR'], PDO::PARAM_STR);
|
$query->bindValue(':board', $board['uri'], PDO::PARAM_INT);
|
||||||
$query->bindValue(':board', $board['uri'], PDO::PARAM_INT);
|
$query->bindValue(':post', $id, PDO::PARAM_INT);
|
||||||
$query->bindValue(':post', $id, PDO::PARAM_INT);
|
$query->bindValue(':reason', $reason, PDO::PARAM_STR);
|
||||||
$query->bindValue(':reason', $reason, PDO::PARAM_STR);
|
$query->execute() or error(db_error($query));
|
||||||
$query->execute() or error(db_error($query));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$is_mod = isset($_POST['mod']) && $_POST['mod'];
|
$is_mod = isset($_POST['mod']) && $_POST['mod'];
|
||||||
|
Loading…
Reference in New Issue
Block a user