From: Michael Vogel Date: Sun, 26 Jul 2015 15:14:32 +0000 (+0200) Subject: Discover users who never are contacted. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a0011ba58e7503a90e643268b63db173e9b1a268;p=friendica.git Discover users who never are contacted. --- diff --git a/include/discover_poco.php b/include/discover_poco.php index 481bedcf92..bd3483307d 100644 --- a/include/discover_poco.php +++ b/include/discover_poco.php @@ -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)