Only distribute items to active contacts

This commit is contained in:
Michael 2016-12-20 07:13:22 +00:00 committed by Roland Häder
parent 4aafbb09a5
commit d72673b162
1 changed files with 1 additions and 1 deletions

View File

@ -576,7 +576,7 @@ function notifier_run(&$argv, &$argc){
$r0 = array(); $r0 = array();
$r1 = q("SELECT DISTINCT(`batch`), `id`, `name`,`network` FROM `contact` WHERE `network` = '%s' $r1 = q("SELECT DISTINCT(`batch`), `id`, `name`,`network` FROM `contact` WHERE `network` = '%s'
AND `uid` = %d AND `rel` != %d group by `batch` ORDER BY rand() ", AND `uid` = %d AND `rel` != %d AND NOT `blocked` AND NOT `pending` AND NOT `archive` GROUP BY `batch` ORDER BY rand()",
dbesc(NETWORK_DIASPORA), dbesc(NETWORK_DIASPORA),
intval($owner['uid']), intval($owner['uid']),
intval(CONTACT_IS_SHARING) intval(CONTACT_IS_SHARING)