From: arno Date: Thu, 20 Aug 2009 10:27:17 +0000 (+0200) Subject: set charset meta in html document sent by api.php (needed by IE) X-Git-Tag: v0.3b_thomas~5 X-Git-Url: https://dev.renevier.net/?p=syp.git;a=commitdiff_plain;h=622411c971955d02eb265498250c683b6f28a154 set charset meta in html document sent by api.php (needed by IE) --- diff --git a/api.php b/api.php index bb89c55..ac49d76 100644 --- a/api.php +++ b/api.php @@ -3,7 +3,8 @@ license. */ function exit_document ($body) { - exit ("$body"); + $charset_meta = ''; + exit ("$charset_meta$body"); } function success ($reason) {