Quote:
Originally Posted by Danisty
Can anybody help me with this? Perhaps post the entire text that should be in the YAAS - Showthread_postbit_create plugin?
|
Code:
$post['userawards'] = '';
$post['showuserawards'] = false;
if ($vbulletin->options['aw_postbit'])
{
if (is_array($userawardscache[$post[userid]]))
{
$aw_i = 0;
$post['num_awards'] = count($userawardscache[$post[userid]]);
foreach($userawardscache[$post['userid']] AS $award_id => $award)
{
$aw_i++;
if ($aw_i <= $vbulletin->options['aw_display_limit'])
{
eval('$post[userawards] .= "' . fetch_template('awards_bit') . '";');
}
}
$post['showuserawards'] = true;
}
}