aboutsummaryrefslogtreecommitdiff
path: root/entities
diff options
context:
space:
mode:
authormarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-08-08 13:14:41 +0000
committermarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-08-08 13:14:41 +0000
commitb8d90e7907f0790d4811fe7a617488d54664721c (patch)
tree9e2e40fa3c565ccf28101ab87ebfe154faac68be /entities
parent9806760c376dda33e168c4da48c6c4b8f0bd2c28 (diff)
downloadelgg-b8d90e7907f0790d4811fe7a617488d54664721c.tar.gz
elgg-b8d90e7907f0790d4811fe7a617488d54664721c.tar.bz2
Refs #206: Character encoding on both widget and main page now UTF-8
git-svn-id: https://code.elgg.org/elgg/trunk@1793 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'entities')
-rw-r--r--entities/index.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/entities/index.php b/entities/index.php
index b9890c1f8..f33df9ced 100644
--- a/entities/index.php
+++ b/entities/index.php
@@ -51,7 +51,8 @@
// Display the page
if ($shell) {
page_draw("", $body);
- } else {
+ } else {
+ header("Content-type: text/html; charset=UTF-8");
echo $body;
}