1
0
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:
Michael Foster 2013-08-11 21:22:25 +10:00
parent faf1d42a08
commit 5836cd23d2

View File

@ -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'];