From 8ecbe201ba3f933a60a7f71497fc05b4a0fcbdaf Mon Sep 17 00:00:00 2001 From: Andreas Hackl Date: Fri, 9 Sep 2022 12:53:48 +0900 Subject: [PATCH] use double quotes for \n and \t. herp derp --- index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.php b/index.php index 57bdb63..23e08e5 100755 --- a/index.php +++ b/index.php @@ -179,13 +179,13 @@ function store_file(string $name, string $tmpfile, bool $formatted = false) : vo { file_put_contents( CONFIG::LOG_PATH, - implode('\t', array( + implode("\t", array( date('c'), $_SERVER['REMOTE_ADDR'], filesize($tmpfile), escapeshellarg($name), $basename - )) . '\n', + )) . "\n", FILE_APPEND ); }