mirror of
https://github.com/friendica/friendica
synced 2024-11-10 05:42:54 +00:00
expire expired accounts from poller
This commit is contained in:
parent
116fc7fcf2
commit
ec16525c86
1 changed files with 6 additions and 0 deletions
|
@ -38,6 +38,12 @@ function poller_run($argv, $argc){
|
|||
|
||||
proc_run('php',"include/queue.php");
|
||||
|
||||
// expire any expired accounts
|
||||
|
||||
q("UPDATE user SET `account_expired` = 1 where `account_expired` = 0
|
||||
AND `account_expires_on` != '0000-00-00 00:00:00'
|
||||
AND `account_expires_on` < UTC_TIMESTAMP() ");
|
||||
|
||||
// once daily run expire in background
|
||||
|
||||
$d1 = get_config('system','last_expire_day');
|
||||
|
|
Loading…
Reference in a new issue