diff --git a/include/discover_poco.php b/include/discover_poco.php index 3e374de943..fd72d69401 100644 --- a/include/discover_poco.php +++ b/include/discover_poco.php @@ -98,7 +98,7 @@ function discover_poco_run(&$argv, &$argc) // Query GNU Social servers for their users ("statistics" addon has to be enabled on the GS server) if (!Config::get('system', 'ostatus_disabled')) { - GlobalContact::gsDiscover(); + GlobalContact::discoverGsUsers(); } } diff --git a/src/Model/GlobalContact.php b/src/Model/GlobalContact.php index 639c8272d0..2e16c687f9 100644 --- a/src/Model/GlobalContact.php +++ b/src/Model/GlobalContact.php @@ -924,7 +924,7 @@ class GlobalContact * * @param str $server Server address */ - public static function gsFetchUsers($server) + public static function fetchGsUsers($server) { logger("Fetching users from GNU Social server ".$server, LOGGER_DEBUG); @@ -980,7 +980,7 @@ class GlobalContact * @brief Asking GNU Social server on a regular base for their user data * */ - public static function gsDiscover() + public static function discoverGsUsers() { $requery_days = intval(Config::get("system", "poco_requery_days")); @@ -997,7 +997,7 @@ class GlobalContact } foreach ($r as $server) { - self::gsFetchUsers($server["url"]); + self::fetchGsUsers($server["url"]); q("UPDATE `gserver` SET `last_poco_query` = '%s' WHERE `nurl` = '%s'", dbesc(datetime_convert()), dbesc($server["nurl"])); } }