Quote:
Originally Posted by Sarcoth
Ahhh, thanks for pointing that out. I apologize for the typo.
1,800 users. Really not sure why it would be failing. I'll see if I can come up with a way to page it out for you, but that is probably a bit above my knowledge right now. I'll see if I can figure it out.
NP. I'm actually enjoying this.
Find:
Code:
foreach ($users AS $user) {
exec_switch_bg();
$usercount++;
$avatarurl=fetch_avatar_url($user[userid]);
if (!$avatarurl) {
$avatarurl = 'images/spacer.gif';
} else {
$avatarurl = $vbulletin->options['bburl'] . '/' . $avatarurl[0];
}
$avatarimage='<img src="'.$avatarurl.'" border="0">'; //Use $avatarimage in userbits to display avatars
eval('$rosterbits .= "' . fetch_template('test_showroster_userbits') . '";');
}
Change to:
Code:
foreach ($users AS $user) {
if ($user['field5'] != '') {
exec_switch_bg();
$usercount++;
$avatarurl=fetch_avatar_url($user[userid]);
if (!$avatarurl) {
$avatarurl = 'images/spacer.gif';
} else {
$avatarurl = $vbulletin->options['bburl'] . '/' . $avatarurl[0];
}
$avatarimage='<img src="'.$avatarurl.'" border="0">'; //Use $avatarimage in userbits to display avatars
eval('$rosterbits .= "' . fetch_template('test_showroster_userbits') . '";');
}
}
|
Slight error in this code, you have 'test_showroster_userbits' and it should be 'showroster_userbits'