X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fhttp-functions.php;h=4fc66c95a5a94a4850f1af9106d3a284b9e34ace;hp=8932af62882342f0f92a76a06851f3444404b592;hb=e5dffd4249c97200cbad02f3f4eaf5c373fdb89a;hpb=2164ff00dd24d381e1d412ae248f486230b2019a diff --git a/inc/http-functions.php b/inc/http-functions.php index 8932af6288..4fc66c95a5 100644 --- a/inc/http-functions.php +++ b/inc/http-functions.php @@ -445,7 +445,7 @@ function sendRawRequest ($host, $request, $allowOnlyHttpOkay = TRUE) { //* DEBUG: */ debugOutput('Response:
'.print_r($response, TRUE).'
'); // Proxy agent found or something went wrong? - if (count($response) == 0) { + if (!isFilledArray($response)) { // No response, maybe timeout $response = array('', '', ''); logDebugMessage(__FUNCTION__, __LINE__, 'Invalid empty response array, maybe timed out?'); @@ -580,7 +580,7 @@ function mergeHttpHeadersWithBody ($body) { $GLOBALS['http_headers'][] = getConfig('HTTP_EOL'); // Make sure at least one header is there (which is still not valid but okay here) - assert((is_array($GLOBALS['http_headers'])) && (count($GLOBALS['http_headers']) > 0)); + assert(isFilledArray($GLOBALS['http_headers'])); // Merge both together return merge_array($GLOBALS['http_headers'], array(count($GLOBALS['http_headers']) => $body));