From 641e69ef7f3d82a1ebf2047b80d282d5c0c87af9 Mon Sep 17 00:00:00 2001 From: friendica Date: Mon, 29 Apr 2013 18:47:34 -0700 Subject: fix broken profile syncing --- include/zot.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'include/zot.php') diff --git a/include/zot.php b/include/zot.php index 7a2db3920..e450304bd 100644 --- a/include/zot.php +++ b/include/zot.php @@ -375,14 +375,16 @@ function zot_refresh($them,$channel = null) { else { logger('zot_refresh: importing profile if available'); + logger('zot_refresh: import profile: ' . print_r($x,true), LOGGER_DATA); // Are we a directory server of some kind? $dirmode = intval(get_config('system','directory_mode')); if($dirmode != DIRECTORY_MODE_NORMAL) { - if(array_key_exists('profile',$x) && is_array($x['profile'])) { - import_directory_profile($x['hash'],$x['profile']); + if(array_key_exists('profile',$j) && is_array($j['profile'])) { + import_directory_profile($x['hash'],$j['profile']); } else { + logger('zot_refresh: profile not available - hiding'); // they may have made it private $r = q("delete from xprof where xprof_hash = '%s' limit 1", dbesc($x['hash']) -- cgit v1.2.3