utf-8 日本語ヘッダー

/template/admin/ 内の admin.header.php 4行目5行目で


CODE:

<title><?php echo $title; ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $lang['ENCODING']; ?>" />


行の順番を逆転します。

CODE:

<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $lang['ENCODING']; ?>" />
<title><?php echo $title; ?></title>



また、使用しているtemplateのディレクトリ内にも header.phpがありますので修正します。
defaultを使用している場合の例は
/template/default/ 内の header.php 5行目6行目で

CODE:

<title><?php echo $title; ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $lang['ENCODING']; ?>" />


行の順番を逆転します。

CODE:

<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $lang['ENCODING']; ?>" />
<title><?php echo $title; ?></title>



ではでは
fjn