Changed double-quotes to single

This commit is contained in:
Roland Häder 2022-07-20 17:04:08 +02:00
parent b5c293762e
commit a2a7d04fa1
No known key found for this signature in database
GPG Key ID: C82EDE5DDFA0BA77
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}