Project

General

Profile

Feature #16053 » class.tslib_fe,php.diff

Administrator Admin, 2006-04-14 16:01

View differences:

typo3/sysext/cms/tslib/class.tslib_fe.php 2006-04-15 01:36:55.000000000 +1200
* @return void
*/
function processOutput() {
// Set header for charset-encoding unless disabled
if (!$this->config['config']['disableCharsetHeader']) {
$headLine = 'Content-Type:text/html;charset='.trim($this->metaCharset);
$contentType = $this->config['config']['contentType'] ? trim($this->config['config']['contentType']) : 'text/html';
$headLine = 'Content-Type:'.$contentType.';charset='.trim($this->metaCharset);
header($headLine);
}
(1-1/2)