From 622411c971955d02eb265498250c683b6f28a154 Mon Sep 17 00:00:00 2001 From: arno Date: Thu, 20 Aug 2009 12:27:17 +0200 Subject: [PATCH] set charset meta in html document sent by api.php (needed by IE) --- api.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) { -- 2.39.2