Merge pull request #3377 from Alkarex/dfrn-date-format

Fix SQL date format bug in dfrn
This commit is contained in:
Michael Vogel 2017-04-22 00:07:47 +02:00 committed by GitHub
commit cc3bc3f785
1 changed files with 1 additions and 1 deletions

View File

@ -1460,7 +1460,7 @@ class dfrn {
dbesc($contact["name"]), dbesc($contact["nick"]), dbesc($contact["about"]), dbesc($contact["location"]),
dbesc($contact["addr"]), dbesc($contact["keywords"]), dbesc($contact["bdyear"]),
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"]));
}