Yep, open
whoposted.php and select the whole SQL query, and replace it with this:
Code:
$posts = $DB_site->query("SELECT
COUNT(postid) AS posts, post.userid, user.username, subscribethread.userid AS subuserid
FROM post LEFT JOIN user USING (userid)
LEFT JOIN subscribethread ON
(subscribethread.threadid=post.threadid AND subscribethread.userid=user.userid)
WHERE post.threadid=\"$threadid\"
GROUP BY post.userid ORDER BY posts DESC");
then further down the code, find this:
Code:
eval("\$posters .= \"".gettemplate("whopostedbit")."\";");
and immediately above it, add this:
Code:
if ($post[userid]==$post[subuserid]) $subscribed = " <smallfont>[subscribed]</smallfont>";
else $subscribed = "";
then open your
whopostedbit template and just after the closing </a> of the profile link, add
$subscribed.
That oughta do it