fix to imported youtube videos, updating of contact profile photos, do not remove "dead" contacts but archive them.

This commit is contained in:
friendica 2012-06-13 19:59:20 -07:00
parent 24bf4632af
commit 7d8b087f4a
4 changed files with 105 additions and 34 deletions

View file

@ -23,6 +23,13 @@ function was_recently_delayed($cid) {
);
if(count($r))
return true;
$r = q("select `term-date` from contact where id = %d and `term-date` != '' and `term-date` != '0000-00-00 00:00:00' limit 1",
intval($cid)
);
if(count($r))
return true;
return false;
}