افتح ملف : includes/functions.class.php
ابحث عن :
CODE
$PowerBB->template->assign('description',$SubjectInfo['text']);
استبدله بـ :
CODE
$PowerBB->template->assign('description',$SubjectInfo['subject_describe']);
لكن في حالة انه لايوجد وصف للموضوع فيفضل ان تستبدله بهذا
CODE
if (empty($SubjectInfo['subject_describe']))
{
$PowerBB->template->assign('description',$SubjectInfo['text']);
}
else
{
$PowerBB->template->assign('description',$SubjectInfo['subject_describe']);
}
بحيث ان لم يجد وصف للموضوع يضيف الوصف الأساسي من نص الموضوع