From
Post 273 found here
Quote:
Originally Posted by Chen
Good addition, only one thing.
You should really replace this:
Code:
if (trim($bbuserinfo[signature])!= "") $signaturechecked="checked";
if ($bbuserinfo[emailnotification]!=0) $emailchecked="checked";
With this:
Code:
if (trim($bbuserinfo[signature]) != '') {
$signaturechecked = 'checked';
} else {
$signaturechecked = '';
}
if ($bbuserinfo['emailnotification'])
$emailchecked = 'checked';
} else {
$emailchecked = '';
}
So people can't add stuff to the $emailchecked variable through the URL (this is why 2.2.5 was released). 
|
Generates a parse error. Looks like it's missing a { after emailnotification. Made this change to get it working.
Code:
if ($bbuserinfo['emailnotification']) {
Great hack Chen, one of my favorites.