php-integration #21

Closed
fred.boniface wants to merge 146 commits from php-integration into main
1 changed files with 4 additions and 1 deletions
Showing only changes of commit b8a6dda082 - Show all commits

View File

@ -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'
);