From 8960c03376cc36e91318b972e2546df4d02ce029 Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Mon, 9 Mar 2009 20:31:12 +0000 Subject: [PATCH] BUGFIX Removed header('Content-Type... from main.php bootstrapping - was defaulting to text/html - an invalid assumption at such an early stage (see #3685) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@72682 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- main.php | 1 - 1 file changed, 1 deletion(-) diff --git a/main.php b/main.php index 3df9b3239..40b91527a 100644 --- a/main.php +++ b/main.php @@ -57,7 +57,6 @@ if($majorVersion < 5) { */ require_once("core/Core.php"); -if(!headers_sent()) header("Content-type: text/html; charset=\"utf-8\""); if (function_exists('mb_http_output')) { mb_http_output('UTF-8'); mb_internal_encoding('UTF-8');