diff options
author | Andrew Manning <tamanning@zoho.com> | 2016-07-13 05:50:31 -0400 |
---|---|---|
committer | Andrew Manning <tamanning@zoho.com> | 2016-07-13 05:50:31 -0400 |
commit | 75b943b98a32efdb229e331a2d1a503f46b3afc9 (patch) | |
tree | 377b5e99be4c0a7f2730d2b36903cdbf790c25e1 /include | |
parent | 513175982367a970d491948f7d8aa1488f6a4340 (diff) | |
parent | 18565600b2b9e36f1792bf29d5575f681fafc0b5 (diff) | |
download | volse-hubzilla-75b943b98a32efdb229e331a2d1a503f46b3afc9.tar.gz volse-hubzilla-75b943b98a32efdb229e331a2d1a503f46b3afc9.tar.bz2 volse-hubzilla-75b943b98a32efdb229e331a2d1a503f46b3afc9.zip |
Merge remote-tracking branch 'upstream/dev' into website-import
Diffstat (limited to 'include')
-rwxr-xr-x | include/items.php | 23 | ||||
-rw-r--r-- | include/zot.php | 7 |
2 files changed, 11 insertions, 19 deletions
diff --git a/include/items.php b/include/items.php index 72f0896ad..373090d41 100755 --- a/include/items.php +++ b/include/items.php @@ -4154,32 +4154,19 @@ function update_remote_id($channel,$post_id,$webpage,$pagetitle,$namespace,$remo } if($page_type) { - // store page info as an alternate message_id so we can access it via // https://sitename/page/$channelname/$pagetitle // if no pagetitle was given or it couldn't be transliterated into a url, use the first // sixteen bytes of the mid - which makes the link portable and not quite as daunting // as the entire mid. If it were the post_id the link would be less portable. - $r = q("select * from item_id where iid = %d and uid = %d and service = '%s' limit 1", + \Zotlabs\Lib\IConfig::Set( intval($post_id), - intval($channel['channel_id']), - dbesc($page_type) + 'system', + $page_type, + ($pagetitle) ? $pagetitle : substr($mid,0,16), + false ); - if($r) { - q("update item_id set sid = '%s' where id = %d", - dbesc(($pagetitle) ? $pagetitle : substr($mid,0,16)), - intval($r[0]['id']) - ); - } - else { - q("insert into item_id ( iid, uid, sid, service ) values ( %d, %d, '%s','%s' )", - intval($post_id), - intval($channel['channel_id']), - dbesc(($pagetitle) ? $pagetitle : substr($mid,0,16)), - dbesc($page_type) - ); - } } } diff --git a/include/zot.php b/include/zot.php index 6dd789181..45347ef22 100644 --- a/include/zot.php +++ b/include/zot.php @@ -3014,7 +3014,12 @@ function build_sync_packet($uid = 0, $packet = null, $groups_changed = false) { if($x['hubloc_host'] == App::get_hostname()) continue; - $synchubs[] = $x; + $y = q("select site_dead from site where site_url = '%s' limit 1", + dbesc($x['hubloc_url']) + ); + + if((! $y) || ($y[0]['site_dead'] == 0)) + $synchubs[] = $x; } if(! $synchubs) |