Mine looks a bit different from yours. I use this thread a couple of times in the member.php page, here is one of them:
Code:
$limit = '10'; // Enter the number of maximum threads you want to be displayed
// for Vines forums
$getthreads = $DB_site->query("
SELECT threadid,title,dateline,forumid
FROM " . TABLE_PREFIX ."thread
WHERE postuserid = '$userinfo[userid]' AND forumid IN ('62','63','64','65')
ORDER BY dateline DESC
LIMIT $limit
");
$valid = $DB_site->num_rows($getthreads);
if ($valid >= 1 )
$numvines=true;
while($threads = $DB_site->fetch_array($getthreads))
{
exec_switch_bg();
$threads['date'] = vbdate($vboptions['dateformat'],$threads['dateline']);
$threads['time'] = vbdate($vboptions['timeformat'],$threads['dateline']);
eval('$usersthreads .= "' . fetch_template('memberinfo_usersthreads') . '";');
}
I added a couple of lines because I only need this done if they have any threads in those forums.