If anyone knows some of this stuff, please let me know if you can help. This is what the Thread Icon stuff looks like in the index page:
Code:
// Thread Icon
if ($vboptions['showthreadicon'])
{
if (!$thread['iconid'])
{
if ($vboptions['showdeficon'])
{
$thread['icon'] = '<img src="' . $vboptions['showdeficon'] . '" border="0" alt="' . $thread['icontitle'] . '" />';
}
else
{
$thread['icon'] = '';
}
}
else
{
$thread['iconpath'] = $iconcache["$thread[iconid]"]['iconpath'];
$thread['icontitle'] = $iconcache["$thread[iconid]"]['icontitle'];
$thread['icon'] = '<img src="' . $thread['iconpath'] . '" border="0" alt="' . $thread['icontitle'] . '" />';
}
}
$getbgrow = getrowcolor();
eval('$threadbits .= "' . fetch_template('index_threadbits') . '";');
}
$DB_site->free_result($threads);
unset($thread);
}
So, i guess i will play with this, lol.