diff --git a/report-issue/index.php b/report-issue/index.php index 7059933..3d3f036 100644 --- a/report-issue/index.php +++ b/report-issue/index.php @@ -40,9 +40,12 @@ "Content-Type: application/json" ); + // Prepare $detail to POST + $body = "User Agent: ", $ua_str, "\n Server PHP Version: ", PHP_VERSION, "\n", $detail; + // Prepare the request $rawData = array( - 'body' => $detail, + 'body' => $body, 'title' => $subject, 'closed' => 'false' );