mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-23 23:20:57 +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
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…
Reference in New Issue
Block a user