no sparkle on federated network
This commit is contained in:
parent
b41218ca30
commit
1335ef7595
|
@ -21,6 +21,7 @@
|
||||||
|
|
||||||
$a->set_baseurl(get_config('system','url'));
|
$a->set_baseurl(get_config('system','url'));
|
||||||
|
|
||||||
|
// 'stat' clause is a temporary measure until we have federation subscriptions working both directions
|
||||||
$contacts = q("SELECT * FROM `contact`
|
$contacts = q("SELECT * FROM `contact`
|
||||||
WHERE ( ( `network` = 'dfrn' AND ( `dfrn-id` != '' OR (`issued-id` != '' AND `duplex` = 1)))
|
WHERE ( ( `network` = 'dfrn' AND ( `dfrn-id` != '' OR (`issued-id` != '' AND `duplex` = 1)))
|
||||||
OR ( `network` = 'stat' AND `poll` != '' ) )
|
OR ( `network` = 'stat' AND `poll` != '' ) )
|
||||||
|
@ -180,7 +181,7 @@
|
||||||
|
|
||||||
consume_feed($xml,$importer,$contact,$hub);
|
consume_feed($xml,$importer,$contact,$hub);
|
||||||
|
|
||||||
if((strlen($hub)) && ($contact['rel'] == REL_BUD) && ($contact['priority'] == 0)) {
|
if((strlen($hub)) && (($contact['rel'] == REL_BUD) || (($contact['network'] === 'stat') && (! $contact['readonly']))) && ($contact['priority'] == 0)) {
|
||||||
$hubs = explode(',', $hub);
|
$hubs = explode(',', $hub);
|
||||||
if(count($hubs)) {
|
if(count($hubs)) {
|
||||||
foreach($hubs as $h) {
|
foreach($hubs as $h) {
|
||||||
|
|
|
@ -263,7 +263,7 @@ function network_content(&$a, $update = 0) {
|
||||||
// Can we use our special contact URL for this author?
|
// Can we use our special contact URL for this author?
|
||||||
|
|
||||||
if(strlen($item['author-link'])) {
|
if(strlen($item['author-link'])) {
|
||||||
if($item['author-link'] == $item['url'] && (! $item['self'])) {
|
if($item['author-link'] == $item['url'] && ($item['network'] === 'dfrn') && (! $item['self'])) {
|
||||||
$profile_link = $redirect_url;
|
$profile_link = $redirect_url;
|
||||||
$sparkle = ' sparkle';
|
$sparkle = ' sparkle';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user