It worked just fine for me (the users age and all) Except I lost the profile button in my postbit.
For those of you that may run into the same problem here is what I did instead of what was stated to do with the admin/functions.php to solve this issue, I did the following and all is working great on my 2.2.7 Board!
### Open admin/functions.php ###
### Find ###
PHP Code:
if ($post[yahoo]!="") {
eval("\$post[yahooicon] = \"".gettemplate("yahoo")."\";");
} else {
$post[yahoo]="";
}
### After add ###
PHP Code:
// Age in postbit - Erwin
$bday = explode("-",$post[birthday]);
if (date("Y")>$bday[0] and $bday[0]>1901 && $bday[0]!='0000') {
$userage= date("Y") - ($bday[0]+1);
if (date("m")>$bday[1] OR (date("m")==$bday[1] AND $bday[2]<=date("d"))) {
$userage=$userage+1;
}
$age = "$userage<br>";
}
// Age in postbit
### Save and Close admin/functions.php ###