Khi hack mod này xong, nếu bạn gõ
CODE
[you]
thì khi bài được post, người đọc bài viết đó sẽ thấy tên của họ ở những chỗ có thẻ 'you' đó
Demo: Hôm nay Guest có khỏe ko?

============================================
Mở: sources/topics.php
============================================
============================================
Tìm:
============================================
CODE
//-----------------------------------------
// A bit hackish - but there are lots of <br> => <br /> changes to make
//-----------------------------------------
//$row['post'] = str_replace( "<br>", "<br />", $row['post'] );
//$row['signature'] = str_replace( "<br>", "<br />", $row['signature'] );
============================================
Thêm phía dưới:
============================================
CODE
$row['post'] = str_replace( "[you]",($ibforums->member['name']),$row['post']);
$row['signature'] = str_replace( "[you]",($ibforums->member['name']),$row['signature']);
============================================
Mở: sources/profile.php
============================================
============================================
Tìm:
============================================
CODE
//-----------------------------------------
// Siggy
//-----------------------------------------
$info['signature'] = $member['signature'];
============================================
Thêm phía dưới:
============================================
CODE
$info['signature'] = str_replace("[you]",($member['name']),$info['signature']);
Done!