== Symptom == Upgrading to PHP 4.4.2 caused a problem with a section of the code in fetch.php producing the following PHP error message: Warning: Header may not contain more than a single header, new line detected in /path/to/fetch.php on line 60. == Fix == Four lines of code on lines 57 to 60 inclusive, need to be replaced in fetch.php: Line 57 $strHeader = 'Content-Type: ' . $objFile->strFileType . "\n"; Line 58 $strHeader .= 'Content-Length: ' . $lngFileSizeBytes . "\n"; Line 59 $strHeader .= 'Content-Disposition: attachment; filename=' . $objFile->strFilename; Line 60 header($strHeader); Replace with: header('Content-Type: ' . $objFile->strFileType); header('Content-Length: ' . $lngFileSizeBytes); header('Content-Disposition: attachment; filename=' . $objFile->strFilename);