Update post.php

It was logged as 0.html when link_for is called with $post
This commit is contained in:
Master Splinter 2017-09-23 23:26:44 +03:00 committed by GitHub
parent a00c682645
commit 6f905fca2c

View File

@ -332,7 +332,7 @@ if (isset($_POST['delete'])) {
if ($config['syslog'])
_syslog(LOG_INFO, 'Reported post: ' .
'/' . $board['dir'] . $config['dir']['res'] . link_for($post) . ($thread['thread'] ? '#' . $id : '') .
'/' . $board['dir'] . $config['dir']['res'] . link_for($thread) . ($thread['thread'] ? '#' . $id : '') .
' for "' . $reason . '"'
);
$query = prepare("INSERT INTO ``reports`` VALUES (NULL, :time, :ip, :board, :post, :reason)");