Merge pull request #10010 from annando/issue-9996

issue 9996: "bd" cannot be ""
This commit is contained in:
Hypolite Petovan 2021-03-08 14:12:59 -05:00 committed by GitHub
commit f6873cc912
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 3 deletions

View File

@ -2579,15 +2579,14 @@ class Contact
public static function updateBirthdays()
{
$condition = [
'`bd` != ""
AND `bd` > "0001-01-01"
AND SUBSTRING(`bd`, 1, 4) != `bdyear`
'`bd` > ?
AND (`contact`.`rel` = ? OR `contact`.`rel` = ?)
AND NOT `contact`.`pending`
AND NOT `contact`.`hidden`
AND NOT `contact`.`blocked`
AND NOT `contact`.`archive`
AND NOT `contact`.`deleted`',
DBA::NULL_DATE,
self::SHARING,
self::FRIEND
];