Ran into a little problem. I had to edit some of the lines for a different hack.
Quote:
if ($avatarurl=="" or ($bbuserinfo[userid]>0 and !($bbuserinfo[showavatars]))) {
$post[avatar]="";
} else {
eval("\$post[avatar] = \"".gettemplate("postbit_avatar")."\";");
}
|
Is instead
Quote:
if ($avatarurl=="" or ($bbuserinfo[userid]>0 and !($bbuserinfo[showavatars]))) {
$post[avatar]="";
} elseif ($post[usergroupid]== 103) {
eval("\$post[avatar] = \"".gettemplate("postbit_blur_avatar")."\";");
} else {
eval("\$post[avatar] = \"".gettemplate("postbit_avatar")."\";");
}
|
Is there anyway for me to use this hack?