createtopic.php
548-549行
$topicnavbar->set_var ('navbreadcrumbsimg','<img src="'.gf_getImage('nav_breadcrumbs').'">');
$topicnavbar->set_var ('navtopicimg','<img src="'.gf_getImage('nav_topic').'">');
$topicnavbar->set_var ('navtopicimg','<div class="alpha-png"><img src="'.gf_getImage('nav_topic').'"></div>');
ナビゲーションバーのイメージのアルファチャネル透過用
621行
$comment = sprintf($CONF_FORUM['quoteformat'],$quotearray['name'],$comment);
↓
$comment = sprintf($CONF_FORUM['quoteformat'],COM_getDisplayName($quotearray['uid']),$comment);文字化け対策
624行
$comment = sprintf($CONF_FORUM['quoteformat'],$quotearray['name'],$quotearray['comment']);
↓
$comment = sprintf($CONF_FORUM['quoteformat'],COM_getDisplayName($quotearray['uid']),$quotearray['comment']);文字化け対策
627行
$comment = sprintf($CONF_FORUM['quoteformat'],$quotearray['name'],$quotearray['comment']);
↓
$comment = sprintf($CONF_FORUM['quoteformat'],COM_getDisplayName($quotearray['uid']),$quotearray['comment']);文字化け対策
647行
$username = $edittopic['name'];
↓
$username = COM_getDisplayName($edittopic['uid']);文字化け対策
704行
$submissionformtop->set_var ('xusername', urlencode($username));
↓
$submissionformtop->set_var ('xusername', $username);失念
$submissionform_main->set_var ('LANG_SAVE', $LANG_GF01['SAVE']);
書き込みのタイトルをSUBMITからSAVEに置き換えるための措置。テンプレート側の修正も必要。
