توسط اين هك مي توانيد آخرين نظر ارسال شده در يك مطلب رو (در صفحه اصلي سايت) مشاهده كنيد.
فايل Engine/Modules/Show.Short.php رو با Notepad2 باز كنيد و پس از اينكه Encoding رو روي UTF-8 قرار داديد، به دنبال كد زير بگرديد:
if ($row['allow_comm']) {
$tpl->set('[com-link]',"<a {$go_page}href=\"".$full_link."#comment\">");
$tpl->set('[/com-link]',"</a>");
} else $tpl->set_block("'\\[com-link\\](.*?)\\[/com-link\\]'si","");
$tpl->set('[com-link]',"<a {$go_page}href=\"".$full_link."#comment\">");
$tpl->set('[/com-link]',"</a>");
} else $tpl->set_block("'\\[com-link\\](.*?)\\[/com-link\\]'si","");
كد پيدا شده رو حذف كنيد و كدهاي زير رو بجاش قرار بديد:
$idnews = $row['id'];
$db->query("SELECT autor, post_id FROM " . PREFIX . "_comments where post_id=$idnews ORDER BY date DESC LIMIT 0,1");
if ($row2 = $db->get_row()){
if ($row['allow_comm']) {
$tpl->set('[com-link]',"<a title=\"آخرين نظر بوسيله: ".$row2['autor']."\" {$go_page}href=\"".$full_link."#comment\">");
$tpl->set('[/com-link]',"</a>");
} else $tpl->set_block("'\\[com-link\\](.*?)\\[/com-link\\]'si","");
} else { $tpl->set('[com-link]', ''); $tpl->set('[/com-link]', ''); }
$db->query("SELECT autor, post_id FROM " . PREFIX . "_comments where post_id=$idnews ORDER BY date DESC LIMIT 0,1");
if ($row2 = $db->get_row()){
if ($row['allow_comm']) {
$tpl->set('[com-link]',"<a title=\"آخرين نظر بوسيله: ".$row2['autor']."\" {$go_page}href=\"".$full_link."#comment\">");
$tpl->set('[/com-link]',"</a>");
} else $tpl->set_block("'\\[com-link\\](.*?)\\[/com-link\\]'si","");
} else { $tpl->set('[com-link]', ''); $tpl->set('[/com-link]', ''); }
موفق باشيد.