From: Michael Vogel Date: Tue, 28 Jul 2015 06:25:30 +0000 (+0200) Subject: The discovery should check all profiles. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=ec161d798f426e53e3c1b963624ce6852c4ddd2a;p=friendica.git The discovery should check all profiles. --- diff --git a/include/discover_poco.php b/include/discover_poco.php index e93b449b98..47c0cc2cd0 100644 --- a/include/discover_poco.php +++ b/include/discover_poco.php @@ -96,7 +96,7 @@ function discover_users() { $checked = 0; foreach ($users AS $user) { - if (poco_do_update($user["created"], $user["updated"], $user["last_failure"], $user["last_contact"])) { + //if (poco_do_update($user["created"], $user["updated"], $user["last_failure"], $user["last_contact"])) { if ($user[0]["server_url"] != "") $server_url = $user[0]["server_url"]; @@ -112,7 +112,7 @@ function discover_users() { } else q("UPDATE `gcontact` SET `last_failure` = '%s' WHERE `nurl` = '%s'", dbesc(datetime_convert()), dbesc(normalise_link($user["url"]))); - } + //} } }