Fix SQL date format bug in dfrn
https://github.com/friendica/friendica/issues/3336 https://github.com/friendica/friendica/pull/3338
This commit is contained in:
parent
27b3943cc7
commit
7f1c71c9fd
1 changed files with 1 additions and 1 deletions
|
@ -1460,7 +1460,7 @@ class dfrn {
|
||||||
dbesc($contact["name"]), dbesc($contact["nick"]), dbesc($contact["about"]), dbesc($contact["location"]),
|
dbesc($contact["name"]), dbesc($contact["nick"]), dbesc($contact["about"]), dbesc($contact["location"]),
|
||||||
dbesc($contact["addr"]), dbesc($contact["keywords"]), dbesc($contact["bdyear"]),
|
dbesc($contact["addr"]), dbesc($contact["keywords"]), dbesc($contact["bdyear"]),
|
||||||
dbesc($contact["bd"]), intval($contact["hidden"]), dbesc($contact["xmpp"]),
|
dbesc($contact["bd"]), intval($contact["hidden"]), dbesc($contact["xmpp"]),
|
||||||
dbesc($contact["name-date"]), dbesc($contact["uri-date"]),
|
dbesc(dbm::date($contact["name-date"])), dbesc(dbm::date($contact["uri-date"])),
|
||||||
intval($contact["id"]), dbesc($contact["network"]));
|
intval($contact["id"]), dbesc($contact["network"]));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue