From 1f7c597c398d450105a3368ffb02c46ce74a9ffc Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Tue, 20 Sep 2022 21:43:45 +0100 Subject: [PATCH] Final fix of report form for today --- issue.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/issue.php b/issue.php index 0eb8495..61c58a3 100644 --- a/issue.php +++ b/issue.php @@ -25,7 +25,7 @@ $detail = cleanInput($_POST["detail"]); // Prepare $detail to POST - $body = "Athena Version: " . $athenaVersion . "\n\n" . "User Agent: " . $ua_str . "\n\n Server PHP Version: " . PHP_VERSION . "\n\n" . $detail; + $body = "Athena Version: " . $athenaVersion . "\n\n" . "User Agent: " . $ua_str . "\n\n Server PHP Version: " . PHP_VERSION . "\n\nUser Comments:\n" . $detail; // Call POST function sendInput($title,$body);