]> git.mxchange.org Git - friendica.git/commitdiff
Issue 4673: Avoid "Incorrect date value: '0000-00-00' for column 'bd'"
authorMichael <heluecht@pirati.ca>
Sat, 24 Mar 2018 22:27:04 +0000 (22:27 +0000)
committerMichael <heluecht@pirati.ca>
Sat, 24 Mar 2018 22:27:04 +0000 (22:27 +0000)
src/Model/GContact.php

index d098e8fa4a4a764f130d2f146f6682949637f925..8f16c07fc1906576a5935e8d4a14a299e2772f8b 100644 (file)
@@ -873,7 +873,8 @@ class GContact
 
                        // Now update the contact entry with the user id "0" as well.
                        // This is used for the shadow copies of public items.
-
+                       /// @todo Check if we really should do this.
+                       // The quality of the gcontact table is mostly lower than the public contact
                        $public_contact = dba::selectFirst('contact', ['id'], ['nurl' => normalise_link($contact["url"]), 'uid' => 0]);
                        if (DBM::is_result($public_contact)) {
                                logger("Update public contact ".$public_contact["id"], LOGGER_DEBUG);
@@ -894,6 +895,12 @@ class GContact
                                                'contact-type' => $contact['contact-type'], 'url' => $contact['url'],
                                                'location' => $contact['location'], 'about' => $contact['about']];
 
+                               // Don't update the birthday field if not set or invalid
+                               if (empty($contact['birthday']) || ($contact['birthday'] < '0001-01-01')) {
+                                       unset($fields['bd']);
+                               }
+
+
                                dba::update('contact', $fields, ['id' => $public_contact["id"]], $old_contact);
                        }
                }