It's cake.
in member.php find:
PHP Code:
$userinfo[avatarurl]=getavatarurl($userinfo[userid]);
if ($userinfo[avatarurl]=="") {
$userinfo[avatarurl]="images/clear.gif";
}
add after:
PHP Code:
$postsArray= $DB_site->query("Select threadid, title from thread where postuserid='$userid ORDER BY threadid LIMIT 10'");
if (!$postsArray)
$recentPosts = "none";
else {
while ($getRecentPosts=$DB_site->fetch_array($postsArray)) {
$recentPosts .="<a href='$bburl/showthread.php?threadid=" . $getRecentPosts[threadid] ."'>$getRecentPosts[title]</a><br>\n";
}
}
Then, simply add the $recentPosts variable in your getinfo template. Formatting is up to you.
NOTE: Check the variables and formatting very carefully. I modified something similar that I did on the fly and have not tested this exact code.