WF-Section 1.0.1での記事(article)のタイトル文字化け対策

| コメント(0) | トラックバック(0) | 

xoops用モジュールWF-Section 1.0.1で記事のタイトルが文字化けする事があるので、下記のように修正しました。

article.phpにある

$xoopsTpl->assign('xoops_pagetitle', htmlentities($xoopsModule->name() . ' - ' . $article->title()));

を下記のように修正する。

$xoopsTpl->assign('xoops_pagetitle', $xoopsModule->getVar('name') . ' - ' . $article->title().'');

トラックバック(0)

トラックバックURL: http://www.ti-web.net/cgi-bin/mt/mt-tb-20080801.cgi/1369

コメントする