From e103639e926576e53e3c28a696e593bb4999ae2c Mon Sep 17 00:00:00 2001 From: jrgektor <135136199+jrgektor@users.noreply.github.com> Date: Thu, 18 Sep 2025 16:21:50 +0300 Subject: [PATCH] Update form-processing.php This line contains an error that rewriting all information intended to be written to the log file. --- feedback/form-processing.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/feedback/form-processing.php b/feedback/form-processing.php index fd9370b..ea17682 100644 --- a/feedback/form-processing.php +++ b/feedback/form-processing.php @@ -289,7 +289,7 @@ function itc_log($message) $output .= $attach . PHP_EOL; } } - $output = '====================='; + $output .= '====================='; error_log($output, 3, 'logs/forms.log'); }