diff options
author | Andreas Gohr <andi@splitbrain.org> | 2006-03-04 17:41:19 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2006-03-04 17:41:19 +0100 |
commit | 2c5c33084b359f89e534423a600774972e9d84d3 (patch) | |
tree | 61463f8074bc5e6a76810c9c9f219d3fcbe64bb1 /lib/tpl/default/main.php | |
parent | 1ca31cfe69e2d10cce65c4323eb652b355f4c904 (diff) | |
download | rpg-2c5c33084b359f89e534423a600774972e9d84d3.tar.gz rpg-2c5c33084b359f89e534423a600774972e9d84d3.tar.bz2 |
move content-type meta header above title tag
This is recommended here: http://www.joelonsoftware.com/articles/Unicode.html
darcs-hash:20060304164119-7ad00-f7da3e6edeefb8dcfc907bf28b51379d7b31689e.gz
Diffstat (limited to 'lib/tpl/default/main.php')
-rw-r--r-- | lib/tpl/default/main.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tpl/default/main.php b/lib/tpl/default/main.php index 9e1a4681d..4ddcf7dab 100644 --- a/lib/tpl/default/main.php +++ b/lib/tpl/default/main.php @@ -17,8 +17,8 @@ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $conf['lang']?>" lang="<?php echo $conf['lang']?>" dir="<?php echo $lang['direction']?>"> <head> - <title><?php tpl_pagetitle()?> [<?php echo hsc($conf['title'])?>]</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <title><?php tpl_pagetitle()?> [<?php echo hsc($conf['title'])?>]</title> <?php tpl_metaheaders()?> |