diff options
author | zotlabs <mike@macgirvin.com> | 2017-11-01 02:15:40 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-11-01 02:15:40 -0700 |
commit | 7d9d1e0cdb21e47aec20b64148a0714323383914 (patch) | |
tree | ba894490a61148f152f6f3e36bfa8f63f14f890d /include/zot.php | |
parent | 98b53801e062f1fe1b5ae16c6e30635b21ebef91 (diff) | |
download | volse-hubzilla-7d9d1e0cdb21e47aec20b64148a0714323383914.tar.gz volse-hubzilla-7d9d1e0cdb21e47aec20b64148a0714323383914.tar.bz2 volse-hubzilla-7d9d1e0cdb21e47aec20b64148a0714323383914.zip |
Maria's profile photo issue, please push to master.
Diffstat (limited to 'include/zot.php')
-rw-r--r-- | include/zot.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/zot.php b/include/zot.php index dad30dbb0..5270ed8b8 100644 --- a/include/zot.php +++ b/include/zot.php @@ -3649,6 +3649,7 @@ function process_channel_sync_delivery($sender, $arr, $deliveries) { $disallowed = array('id','aid','uid','guid'); foreach($arr['profile'] as $profile) { + $x = q("select * from profile where profile_guid = '%s' and uid = %d limit 1", dbesc($profile['profile_guid']), intval($channel['channel_id']) @@ -3671,6 +3672,9 @@ function process_channel_sync_delivery($sender, $arr, $deliveries) { if(in_array($k,$disallowed)) continue; + if($profile['is_default'] && in_array($k,['photo','thumb'])) + continue; + if($k === 'name') $clean['fullname'] = $v; elseif($k === 'with') |