Contacts: Save last-modified time in REV property if not set

remotes/origin/stable4
Bart Visscher 15 years ago
parent 6bd0aad117
commit b77132edbe
  1. 4
      apps/contacts/lib/app.php

@ -97,6 +97,10 @@ class OC_Contacts_App {
$vcard->setString('N', 'Unknown;Name;;;');
}
}
if (!is_null($vcard) && !isset($vcard->REV)) {
$rev = new DateTime('@'.$card['lastmodified']);
$vcard->setString('REV', $rev->format(DateTime::W3C));
}
return $vcard;
}

Loading…
Cancel
Save