1
0
Fork 0

Replace remaining occurrences of "0001-01-01" with DBA::NULL_DATE

This commit is contained in:
Hypolite Petovan 2018-11-21 23:53:45 -05:00
commit d71e856535
6 changed files with 11 additions and 12 deletions

View file

@ -216,7 +216,7 @@ function profiles_post(App $a) {
} else {
$ignore_year = false;
}
if (!in_array($dob, ['0000-00-00', '0001-01-01'])) {
if (!in_array($dob, ['0000-00-00', DBA::NULL_DATE])) {
if (strpos($dob, '0000-') === 0 || strpos($dob, '0001-') === 0) {
$ignore_year = true;
$dob = substr($dob, 5);