Set the network name for some centralized networks.

This commit is contained in:
Michael Vogel 2015-07-29 00:21:08 +02:00
parent 678de014ad
commit b7c9b942f1
1 changed files with 7 additions and 1 deletions

View File

@ -419,8 +419,14 @@ function poco_last_updated($profile, $force = false) {
if (in_array($urlparts["host"], array("www.facebook.com", "facebook.com", "twitter.com", if (in_array($urlparts["host"], array("www.facebook.com", "facebook.com", "twitter.com",
"identi.ca", "alpha.app.net"))) { "identi.ca", "alpha.app.net"))) {
$networks = array("www.facebook.com" => NETWORK_FACEBOOK,
"facebook.com" => NETWORK_FACEBOOK,
"twitter.com" => NETWORK_TWITTER,
"identi.ca" => NETWORK_PUMPIO,
"alpha.app.net" => NETWORK_APPNET);
q("UPDATE `gcontact` SET `network` = '%s' WHERE `nurl` = '%s'", q("UPDATE `gcontact` SET `network` = '%s' WHERE `nurl` = '%s'",
dbesc(NETWORK_PHANTOM), dbesc(normalise_link($profile))); dbesc($networks[$urlparts["host"]]), dbesc(normalise_link($profile)));
return; return;
} }