Bug #84167 ยป 0001-BUGFIX-Negation-bug-in-getUrl-empty-body-check.patch
typo3/sysext/core/Classes/Utility/GeneralUtility.php | ||
---|---|---|
$report['content_type'] = $response->getHeader('Content-Type');
|
||
$report['error'] = $response->getStatusCode();
|
||
$report['message'] = $response->getReasonPhrase();
|
||
} elseif (!empty($content)) {
|
||
} elseif (empty($content)) {
|
||
$report['error'] = $response->getStatusCode();
|
||
$report['message'] = $response->getReasonPhrase();
|
||
} elseif ($includeHeader) {
|