]> git.mxchange.org Git - friendica.git/commitdiff
Issue 3336: The date format should now be okay
authorMichael <heluecht@pirati.ca>
Thu, 13 Apr 2017 19:25:00 +0000 (19:25 +0000)
committerMichael <heluecht@pirati.ca>
Thu, 13 Apr 2017 19:25:00 +0000 (19:25 +0000)
include/socgraph.php

index 642d03d8911a6bf8b204f40ce9915bd092fbacbc..66533e1511c70cae485bdd75e94fdcb90f6a0c4d 100644 (file)
@@ -2096,7 +2096,7 @@ function update_gcontact($contact) {
        fix_alternate_contact_address($contact);
 
        if (!isset($contact["updated"]))
-               $contact["updated"] = datetime_convert();
+               $contact["updated"] = dbm::date();
 
        if ($contact["server_url"] == "") {
                $server_url = $contact["url"];
@@ -2151,7 +2151,7 @@ function update_gcontact($contact) {
                        dbesc($contact["gender"]), dbesc($contact["keywords"]), intval($contact["hide"]),
                        intval($contact["nsfw"]), intval($contact["contact-type"]), dbesc($contact["alias"]),
                        dbesc($contact["notify"]), dbesc($contact["url"]), dbesc($contact["location"]),
-                       dbesc($contact["about"]), intval($contact["generation"]), dbesc($contact["updated"]),
+                       dbesc($contact["about"]), intval($contact["generation"]), dbesc(dbm::date($contact["updated"])),
                        dbesc($contact["server_url"]), dbesc($contact["connect"]),
                        dbesc(normalise_link($contact["url"])), intval($contact["generation"]));