diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2014-02-03 16:31:08 -0800 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2014-02-03 16:34:13 -0800 |
commit | 4e0e42abf1202b236d2379b20469d2ccdf15a70f (patch) | |
tree | bd22bf20a489f169390c3f2edc255d6837b24aa3 | |
parent | 33f3ab588a0b61f5f42b131da00a6fe714bb879d (diff) | |
download | website-4e0e42abf1202b236d2379b20469d2ccdf15a70f.tar.gz website-4e0e42abf1202b236d2379b20469d2ccdf15a70f.tar.bz2 website-4e0e42abf1202b236d2379b20469d2ccdf15a70f.tar.xz website-4e0e42abf1202b236d2379b20469d2ccdf15a70f.zip |
Switch encoding to UTF-8
-rw-r--r-- | includes/common.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/common.php b/includes/common.php index 11a3f04..c3471b0 100644 --- a/includes/common.php +++ b/includes/common.php @@ -7,14 +7,14 @@ define('TMWWEBSITE', true); function placeHeader($page_title) { - echo "<?xml version=\"1.0\" encoding=\"ISO-8859-15\"?>\n"; + echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"; ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>The Mana World</title> - <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-15"/> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <meta http-equiv="Content-Style-Type" content="text/css"/> <meta http-equiv="Content-Language" content="en"/> <link rel="icon" type="image/png" href="images/icon16.png"/> |