aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-05-25 13:37:13 -0700
committerzotlabs <mike@macgirvin.com>2017-05-25 13:37:13 -0700
commitb4da2d35bf8084da812be0716917a0f88cf68f91 (patch)
tree32cf6c3b86773c152ab22c534a07ae2d84285008 /Zotlabs
parentfd357f87be5bbdbe135173305cdc9ba550a34e21 (diff)
downloadvolse-hubzilla-b4da2d35bf8084da812be0716917a0f88cf68f91.tar.gz
volse-hubzilla-b4da2d35bf8084da812be0716917a0f88cf68f91.tar.bz2
volse-hubzilla-b4da2d35bf8084da812be0716917a0f88cf68f91.zip
start using the abook_not_here flag (requires changes in addons, not easily portable to hubzilla)
Diffstat (limited to 'Zotlabs')
-rw-r--r--Zotlabs/Module/Import.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/Zotlabs/Module/Import.php b/Zotlabs/Module/Import.php
index ce3fd469a..a2f83e1cb 100644
--- a/Zotlabs/Module/Import.php
+++ b/Zotlabs/Module/Import.php
@@ -333,6 +333,10 @@ class Import extends \Zotlabs\Web\Controller {
$abook['abook_feed'] = (($abook['abook_flags'] & 0x0100 ) ? 1 : 0);
}
+ if(array_key_exists('abook_instance',$abook) && $abook['abook_instance'] && strpos($abook['abook_instance'],z_root()) === false) {
+ $abook['abook_not_here'] = 1;
+ }
+
if($abook['abook_self']) {
$role = get_pconfig($channel['channel_id'],'system','permissions_role');
if(($role === 'forum') || ($abook['abook_my_perms'] & PERMS_W_TAGWALL)) {