Discover users who never are contacted.

This commit is contained in:
Michael Vogel 2015-07-26 17:14:32 +02:00
parent e5bf7bae7b
commit a0011ba58e
1 changed files with 3 additions and 3 deletions

View File

@ -82,11 +82,11 @@ function discover_poco_run(&$argv, &$argc){
}
function discover_users() {
logger("Discover users", LOGGER_DEBUG);
// To-Do: Maybe we should check old contact as well.
$users = q("SELECT `url`, `created`, `updated`, `last_failure`, `last_contact`, `server_url` FROM `gcontact`
WHERE `updated` = '0000-00-00 00:00:00' AND `last_contact` = '0000-00-00 00:00:00' AND
`last_failure` = '0000-00-00 00:00:00' AND `network` IN ('%s', '%s', '%s')
ORDER BY rand()",
WHERE `last_contact` = '0000-00-00 00:00:00' AND `last_failure` = '0000-00-00 00:00:00' AND
`network` IN ('%s', '%s', '%s') ORDER BY rand()",
dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA), dbesc(NETWORK_OSTATUS));
if (!$users)