From: reine Date: Sun, 16 Dec 2012 08:41:46 +0000 (+0900) Subject: FIX: コメントテンプレートで使用される変数"authtext"にテンプレートが読み込まれない不具合を修正。 X-Git-Tag: release-3-65-sp1~6 X-Git-Url: http://git.osdn.net/view?p=nucleus-jp%2Fnucleus-jp-ancient.git;a=commitdiff_plain;h=e874700b55c8e52c59737c6405e96c0478b5aee5 FIX: コメントテンプレートで使用される変数"authtext"にテンプレートが読み込まれない不具合を修正。 --- diff --git a/nucleus/libs/COMMENTACTIONS.php b/nucleus/libs/COMMENTACTIONS.php index 9efae63..1a1989a 100644 --- a/nucleus/libs/COMMENTACTIONS.php +++ b/nucleus/libs/COMMENTACTIONS.php @@ -94,7 +94,7 @@ class COMMENTACTIONS extends BaseActions { // begin if: member comment if ($comment['memberid'] != 0) { - $comment['authtext'] = $template['COMMENTS_AUTH']; + $comment['authtext'] = $this->template['COMMENTS_AUTH']; $mem =& $manager->getMember($comment['memberid']); $comment['user'] = $mem->getDisplayName();