diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-08-23 13:27:34 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-08-23 13:27:34 -0700 |
commit | bf190be5b42378e3a9c122a5ff2311691b4814fe (patch) | |
tree | a84598c3960c859e79767ca3a6491691f2cc746e /include/zot.php | |
parent | 2a59392ba8be974a5deec2e6f15959fde21186ea (diff) | |
download | volse-hubzilla-bf190be5b42378e3a9c122a5ff2311691b4814fe.tar.gz volse-hubzilla-bf190be5b42378e3a9c122a5ff2311691b4814fe.tar.bz2 volse-hubzilla-bf190be5b42378e3a9c122a5ff2311691b4814fe.zip |
issues encountered with hubzilla DB changes, zot_refresh and item_drop and hub sync
Diffstat (limited to 'include/zot.php')
-rw-r--r-- | include/zot.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/zot.php b/include/zot.php index 17330838b..178b8fe57 100644 --- a/include/zot.php +++ b/include/zot.php @@ -294,12 +294,12 @@ function zot_refresh($them, $channel = null, $force = false) { if ($them['hubloc_url']) { $url = $them['hubloc_url']; } else { - $r = q("select hubloc_url, hubloc_flags from hubloc where hubloc_hash = '%s'", + $r = q("select hubloc_url, hubloc_primary from hubloc where hubloc_hash = '%s'", dbesc($them['xchan_hash']) ); if ($r) { foreach ($r as $rr) { - if ($rr['hubloc_flags'] & HUBLOC_FLAGS_PRIMARY) { + if (intval($rr['hubloc_primary'])) { $url = $rr['hubloc_url']; break; } @@ -2207,7 +2207,7 @@ function sync_locations($sender, $arr, $absolute = false) { dbesc(datetime_convert()), intval($r[0]['hubloc_id']) ); - $r[0]['hubloc_flags'] = $r[0]['hubloc_flags'] ^ HUBLOC_FLAGS_PRIMARY; + $r[0]['hubloc_primary'] = intval($location['primary']); hubloc_change_primary($r[0]); $what .= 'primary_hub '; $changed = true; |