Remove more deprecated "poco_check" calls
This commit is contained in:
parent
bc517ef3d2
commit
1d6910277d
|
@ -232,7 +232,11 @@ function discover_directory($search) {
|
||||||
if ($data["network"] == NETWORK_DFRN) {
|
if ($data["network"] == NETWORK_DFRN) {
|
||||||
logger("Profile ".$jj->url." is reachable (".$search.")", LOGGER_DEBUG);
|
logger("Profile ".$jj->url." is reachable (".$search.")", LOGGER_DEBUG);
|
||||||
logger("Add profile ".$jj->url." to local directory (".$search.")", LOGGER_DEBUG);
|
logger("Add profile ".$jj->url." to local directory (".$search.")", LOGGER_DEBUG);
|
||||||
poco_check($data["url"], $data["name"], $data["network"], $data["photo"], "", "", "", $jj->tags, $data["addr"], "", 0);
|
|
||||||
|
if ($jj->tags != "") {
|
||||||
|
$data["keywords"] = $jj->tags;
|
||||||
|
}
|
||||||
|
update_gcontact($data);
|
||||||
} else {
|
} else {
|
||||||
logger("Profile ".$jj->url." is not responding or no Friendica contact - but network ".$data["network"], LOGGER_DEBUG);
|
logger("Profile ".$jj->url." is not responding or no Friendica contact - but network ".$data["network"], LOGGER_DEBUG);
|
||||||
}
|
}
|
||||||
|
|
|
@ -73,9 +73,9 @@ function dirfind_content(App $a, $prefix = "") {
|
||||||
$j->results[] = $objresult;
|
$j->results[] = $objresult;
|
||||||
|
|
||||||
// Add the contact to the global contacts if it isn't already in our system
|
// Add the contact to the global contacts if it isn't already in our system
|
||||||
if (($contact["cid"] == 0) AND ($contact["zid"] == 0) AND ($contact["gid"] == 0))
|
if (($contact["cid"] == 0) AND ($contact["zid"] == 0) AND ($contact["gid"] == 0)) {
|
||||||
poco_check($user_data["url"], $user_data["name"], $user_data["network"], $user_data["photo"],
|
update_gcontact($user_data);
|
||||||
"", "", "", "", "", datetime_convert(), 0);
|
}
|
||||||
} elseif ($local) {
|
} elseif ($local) {
|
||||||
|
|
||||||
if ($community)
|
if ($community)
|
||||||
|
|
Loading…
Reference in a new issue