I'm trying to modify neo's 'admin avatar size' hack.
I'm changing it so that mods have different sizes to admins.
Could someone please tell me what is wrong this code (I'm gussing it's the wasy I structured it:
PHP Code:
if ($bbuserinfo[usergroupid]==6 || $bbuserinfo[usergroupid]==7 || $bbuserinfo[usergroupid]==5) {
$customtext = "Note: the maximum size of your custom image is $amw in width by $amh in height or $amfs bytes (whichever is smaller).";
} else {
$customtext = "Note: the maximum size of your custom image is $mmw in width by $mmh in height or $mmfs bytes (whichever is smaller).";
} else {
$customtext = "Note: the maximum size of your custom image is $avatarmaxdimension by $avatarmaxdimension pixels or $avatarmaxsize bytes (whichever is smaller).";
}