reset content type to normal html, since application/xhtml+xml gives quite some javascript problems

This commit is contained in:
Christian Weiske 2010-06-07 08:00:07 +02:00
parent 041d1c0b38
commit 66c1044d41

View File

@ -109,8 +109,8 @@ $tplVars['userservice'] = $userservice;
if (!defined('UNIT_TEST_MODE')) { if (!defined('UNIT_TEST_MODE')) {
//API files define that, so we need a way to support both of them //API files define that, so we need a way to support both of them
if (!isset($httpContentType)) { if (!isset($httpContentType)) {
//$httpContentType = 'text/html'; $httpContentType = 'text/html';
$httpContentType = 'application/xhtml+xml'; //$httpContentType = 'application/xhtml+xml';
} }
if ($httpContentType !== false) { if ($httpContentType !== false) {
header('Content-Type: ' . $httpContentType . '; charset=utf-8'); header('Content-Type: ' . $httpContentType . '; charset=utf-8');