/Sources/Subs.php
มองหา: (Ctrl+F)
// Just in case it wasn't determined yet whether UTF-8 is enabled.
ใส่ก่อนนั้น
//show_on_reply
//by:expertDuck
$message = preg_replace_callback('~\[reply](.+?)\[/reply\]~i','show_on_reply_tag',$message);
ไปยังบรรทัดสุดท้ายของไฟล์( Ctrl+END )
หา:
?>
ใส่ก่อนนั้น
//print reply to see content
//by:ExpertDuck
function show_on_reply_tag($message)
{
global $topic,$db_prefix,$context,$boardurl;
//Admin is SuperMan
if($context['user']['is_admin'] || $context['user']['is_mod'])
return $message[1];
//Guest Can't see Always
elseif($context['user']['is_guest'])
return '<img src="'.$boardurl.'/reply-tag.png" alt="" />';
//this not use in topic
if(empty($topic))
return false;
$q="SELECT COUNT(*)
FROM {$db_prefix}messages
WHERE ID_TOPIC= {$topic} AND ID_MEMBER =".$context['user']['id'];
$result = db_query($q,__FILE__,__LINE__);
list($count) = mysql_fetch_row($result);
if($count>0)
return $message[1];
else
return '<img src="'.$boardurl.'/reply-tag.png" alt="" />';
return $count;
}
เสร็จแล้วก็ copy รูปชื่อ reply-tag.png ไปวางไว้ ใน folder หลักบอร์ดเลย ( ที่เดียวกับ SSI.php )
Sources/Post.php
ค้นหา:
$form_message = preg_replace(array('~\n?\[quote.*?\].+?\[/quote\]\n?~is', '~^\n~', '~\[/quote\]~'), '', $form_message);
แทรกไว้หลัง
$form_message = preg_replace('~\[reply](.+?)\[/reply\]~i', '[img]'.$GLOBALS['boardurl'].'/reply-tag.png[/img]', $form_message);
วิธีใช้ก็ [reply]...........babababa...........[/reply]
เครดิต:by:ExpertDuck_http://www.zone-it.com