*bump*
to elaborate i have a version of this
PHP Code:
while ($post = $db->fetch_array($posts))
{
$cell++;
if ($tachyuser)
{
$fetchtype = 'post_global_ignore';
}
else if ($ignore["$post[userid]"])
{
$fetchtype = 'post_ignore';
}
else if ($post['visible'] == 2)# OR ($thread['visible'] == 2 AND $postcount == 1))
{
$fetchtype = 'post_deleted';
}
else
{
$fetchtype = 'post';
}
$postbit_obj =& $postbit_factory->fetch_postbit($fetchtype);
$postbit .= $postbit_obj->construct_postbit($post);
if ($post['avatarid'])
{
$postbit = str_replace(
array(
$post['avatarurl']
),
array(
$vbulletin->options['bburl'] . "/" . $post['avatarpath']
),
$postbit);
}
$post['avatarurl'] = '';
} //got all that info
but for one avatar it comes out with a warped url, anyway i sent it to beta test but i'm still looking for superior methodry hence the thread