diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-09-17 16:50:30 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-09-17 16:50:30 -0700 |
commit | 22429cd432ae99c529040d013b9e25f0549bdf31 (patch) | |
tree | e29cbcfafeab37d7262d0da6e7524eb11d5eae01 /include/Contact.php | |
parent | 68004fc962922b01f81039e1613eb3f8dade0987 (diff) | |
download | volse-hubzilla-22429cd432ae99c529040d013b9e25f0549bdf31.tar.gz volse-hubzilla-22429cd432ae99c529040d013b9e25f0549bdf31.tar.bz2 volse-hubzilla-22429cd432ae99c529040d013b9e25f0549bdf31.zip |
friends not being correctly unmarked for death after contact resumed
Diffstat (limited to 'include/Contact.php')
-rw-r--r-- | include/Contact.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/Contact.php b/include/Contact.php index 3c41f7650..c59038e5d 100644 --- a/include/Contact.php +++ b/include/Contact.php @@ -46,7 +46,7 @@ function mark_for_death($contact) { if(! function_exists('unmark_for_death')) { function unmark_for_death($contact) { // It's a miracle. Our dead contact has inexplicably come back to life. - q("UPDATE `contact` SET `term-date = '%s' WHERE `id` = %d LIMIT 1", + q("UPDATE `contact` SET `term-date` = '%s' WHERE `id` = %d LIMIT 1", dbesc('0000-00-00 00:00:00'), intval($contact['id']) ); |