'$about'=>['about',L10n::t('Tell us about yourself...'),$r[0]['about']],
'$xmpp'=>['xmpp',L10n::t("XMPP \x28Jabber\x29 address:"),$r[0]['xmpp'],L10n::t("The XMPP address will be propagated to your contacts so that they can follow you.")],
DBA::update('contact',['term-date'=>DateTimeFormat::utcNow()],['`nurl` = ? AND `term-date` <= ? AND NOT `self`',normalise_link($contact['url']),NULL_DATE]);
DBA::update('contact',['term-date'=>DateTimeFormat::utcNow()],['`nurl` = ? AND `term-date` <= ? AND NOT `self`',normalise_link($contact['url']),DBA::NULL_DATETIME]);
@ -536,7 +536,7 @@ class Contact extends BaseModule
// tabs
$tab_str=self::getTabsHTML($a,$contact,3);
$lost_contact=(($contact['archive']&&$contact['term-date']>NULL_DATE&&$contact['term-date']<DateTimeFormat::utcNow())?L10n::t('Communications lost with this contact!'):'');
$lost_contact=(($contact['archive']&&$contact['term-date']>DBA::NULL_DATETIME&&$contact['term-date']<DateTimeFormat::utcNow())?L10n::t('Communications lost with this contact!'):'');