I think that bump on my head helped, cos I "hacked" it myself
Open
member.php and find...
PHP Code:
if ($filename!="") {
// check valid image
if ($imginfo=@getimagesize($filename)) {
if ($imginfo[0]>$avatarmaxdimension or $imginfo[1]>$avatarmaxdimension) {
@unlink($filename);
eval("standarderror(\"".gettemplate("error_avatarbaddimensions")."\");");
}
add
above it...
PHP Code:
if ($bbuserinfo['usergroupid']==9)
{
$avatarmaxdimension = "65" ;
}
This would set anyone in usergroup 9 to be allowed avatars of 65x65 and everyone else would have the default specified in admin console. If you use this then PM me so I can feel proud
:squareeyed: