Im useing an off site avatar hack too, so the url is stored in a field (field7)
i trid to change this:
Quote:
if ($bbuserinfo[userid]!=0) {
$avatarurl=getavatarurl($bbuserinfo[userid]);
if ($avatarurl=='') {
$avatarurl='images/avatars/noavatar.gif';
}
|
to this:
Quote:
if ($bbuserinfo[userid]!=0) {
$avatarurl=$bbuserinfo[field7];
if ($avatarurl=='') {
$avatarurl='images/avatars/noavatar.gif';
}
|
But it doesnt seem to be working, is there somthing im doing wrong?