Code standards
This commit is contained in:
parent
2b8adf5073
commit
878a418c6b
1 changed files with 4 additions and 2 deletions
|
@ -29,8 +29,10 @@ use Friendica\Model\Photo;
|
||||||
/**
|
/**
|
||||||
* Removes public contacts that aren't in use
|
* Removes public contacts that aren't in use
|
||||||
*/
|
*/
|
||||||
class RemoveUnusedContacts {
|
class RemoveUnusedContacts
|
||||||
public static function execute() {
|
{
|
||||||
|
public static function execute()
|
||||||
|
{
|
||||||
$condition = ["`uid` = ? AND NOT `self` AND NOT `nurl` IN (SELECT `nurl` FROM `contact` WHERE `uid` != ?)
|
$condition = ["`uid` = ? AND NOT `self` AND NOT `nurl` IN (SELECT `nurl` FROM `contact` WHERE `uid` != ?)
|
||||||
AND (NOT `network` IN (?, ?, ?, ?, ?, ?) OR (`archive` AND `success_update` < UTC_TIMESTAMP() - INTERVAL ? DAY))
|
AND (NOT `network` IN (?, ?, ?, ?, ?, ?) OR (`archive` AND `success_update` < UTC_TIMESTAMP() - INTERVAL ? DAY))
|
||||||
AND NOT `id` IN (SELECT `author-id` FROM `item`) AND NOT `id` IN (SELECT `owner-id` FROM `item`)
|
AND NOT `id` IN (SELECT `author-id` FROM `item`) AND NOT `id` IN (SELECT `owner-id` FROM `item`)
|
||||||
|
|
Loading…
Reference in a new issue