Merge pull request #3573 from irhen/issue-3529-fix-mega-age

fix big age
This commit is contained in:
Michael Vogel 2017-07-10 18:43:05 +02:00 committed by GitHub
commit ef3398f09a

View file

@ -656,8 +656,10 @@ function advanced_profile(App $a) {
$profile['birthday'] = array( t('Birthday:'), $val); $profile['birthday'] = array( t('Birthday:'), $val);
} }
if (!empty($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 );
} }