Skip to content
This repository has been archived by the owner on May 8, 2024. It is now read-only.

Remove EOL from Content-Type header #328

Merged
merged 1 commit into from
Aug 30, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public function encodeMimeMultipart(array $bodyPartContents)
$batchBody =& $result['body'];
$batchHeaders =& $result['headers'];

$batchHeaders['Content-Type'] = $mimeType . "; $eof boundary=\"$batchId\"";
$batchHeaders['Content-Type'] = $mimeType . "; boundary=\"$batchId\"";

$batchBody .= "--" . $batchId . $eof;
$batchBody .= "Content-Type: $mimeType; boundary=\"$changeSetId\"" . $eof;
Expand Down