fix big age
This commit is contained in:
parent
8863f0e234
commit
534f79a5a5
|
@ -656,8 +656,10 @@ function advanced_profile(App $a) {
|
||||||
$profile['birthday'] = array( t('Birthday:'), $val);
|
$profile['birthday'] = array( t('Birthday:'), $val);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
if ($a->profile['dob']
|
||||||
if ($age = age($a->profile['dob'],$a->profile['timezone'],'')) {
|
&& $a->profile['dob'] > '0001-01-01'
|
||||||
|
&& $age = age($a->profile['dob'], $a->profile['timezone'], '')
|
||||||
|
) {
|
||||||
$profile['age'] = array( t('Age:'), $age );
|
$profile['age'] = array( t('Age:'), $age );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue