log subject in post.log since we don't yet have msgid.

This commit is contained in:
Retro_Guy 2024-06-18 04:02:05 -07:00
parent 598ba842b3
commit df094abeb3
1 changed files with 1 additions and 1 deletions

View File

@ -289,7 +289,7 @@ if ($type == "post") {
}
// Post logging
if ($enable_post_log) {
file_put_contents($logfile, "\n" . format_log_date() . " Post in: " . $returngroup . " by " . $name, FILE_APPEND);
file_put_contents($logfile, "\n" . format_log_date() . " Post in: " . $returngroup . " by " . $name . "\n " . $subject, FILE_APPEND);
}
echo '<p><a href="' . $file_thread . '?group=' . $returngroup . '">Back</a></p>';
} else {