From: Roland Häder Date: Wed, 20 Jul 2022 15:04:08 +0000 (+0200) Subject: Changed double-quotes to single X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a2a7d04fa1f3073e1bf79703e9516b20e502c225;p=friendica.git Changed double-quotes to single --- diff --git a/src/Model/FContact.php b/src/Model/FContact.php index cc6b2d2a7a..713d74dc19 100644 --- a/src/Model/FContact.php +++ b/src/Model/FContact.php @@ -53,8 +53,8 @@ class FContact if (is_null($update)) { // update record occasionally so it doesn't get stale - $d = strtotime($person["updated"]." +00:00"); - if ($d < strtotime("now - 14 days")) { + $d = strtotime($person['updated'] . ' +00:00'); + if ($d < strtotime('now - 14 days')) { $update = true; }