Merge pull request #1160 from nupplaphil/task/httprequest_optimiziations
[various] Fixup HTTP headers for httpClient requests
This commit is contained in:
commit
db998b0bf1
|
@ -224,7 +224,7 @@ EOT;
|
|||
Logger::log('dwpost: data: ' . $xml, Logger::DATA);
|
||||
|
||||
if ($dw_blog !== 'test') {
|
||||
$x = DI::httpRequest()->post($dw_blog, $xml, ["Content-Type: text/xml"])->getBody();
|
||||
$x = DI::httpRequest()->post($dw_blog, $xml, ['Content-Type' => 'text/xml'])->getBody();
|
||||
}
|
||||
|
||||
Logger::log('posted to dreamwidth: ' . ($x) ? $x : '', Logger::DEBUG);
|
||||
|
|
|
@ -219,7 +219,7 @@ EOT;
|
|||
Logger::log('ijpost: data: ' . $xml, Logger::DATA);
|
||||
|
||||
if ($ij_blog !== 'test') {
|
||||
$x = DI::httpRequest()->post($ij_blog, $xml, ["Content-Type: text/xml"])->getBody();
|
||||
$x = DI::httpRequest()->post($ij_blog, $xml, ['Content-Type' => 'text/xml'])->getBody();
|
||||
}
|
||||
Logger::log('posted to insanejournal: ' . $x ? $x : '', Logger::DEBUG);
|
||||
}
|
||||
|
|
|
@ -234,7 +234,7 @@ EOT;
|
|||
Logger::log('ljpost: data: ' . $xml, Logger::DATA);
|
||||
|
||||
if ($lj_blog !== 'test') {
|
||||
$x = DI::httpRequest()->post($lj_blog, $xml, ["Content-Type: text/xml"])->getBody();
|
||||
$x = DI::httpRequest()->post($lj_blog, $xml, ['Content-Type' => 'text/xml'])->getBody();
|
||||
}
|
||||
Logger::log('posted to livejournal: ' . ($x) ? $x : '', Logger::DEBUG);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user