mirror of
https://github.com/friendica/friendica
synced 2025-04-26 19:50:10 +00:00
fix to imported youtube videos, updating of contact profile photos, do not remove "dead" contacts but archive them.
This commit is contained in:
parent
24bf4632af
commit
7d8b087f4a
4 changed files with 105 additions and 34 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue