From fc5ed8f7fc4fccdcf34512661454e5095ee6fb0b Mon Sep 17 00:00:00 2001 From: Remy Sharp Date: Tue, 10 Jan 2012 08:16:45 +0000 Subject: [PATCH] sent utf-8 with content type to allow for unicode characters in plain text version --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index 0ce52bda..906c785e 100644 --- a/index.php +++ b/index.php @@ -139,7 +139,7 @@ $license = array_shift(explode('', array_pop(explode('
', $license)))); $license = preg_replace('/<[^>]*>/', '', trim($license)); $license = html_entity_decode($license); - header('content-type: text/plain'); + header('content-type: text/plain; charset=UTF-8'); } echo $license;