diff options
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Lib/Apps.php | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/Zotlabs/Lib/Apps.php b/Zotlabs/Lib/Apps.php index bb0fd9230..6f23b83ee 100644 --- a/Zotlabs/Lib/Apps.php +++ b/Zotlabs/Lib/Apps.php @@ -146,8 +146,11 @@ class Apps { $ret['type'] = 'system'; foreach($ret as $k => $v) { - if(strpos($v,'http') === 0) - $ret[$k] = zid($v); + if(strpos($v,'http') === 0) { + if(! (local_channel() && strpos($v,z_root()) === 0)) { + $ret[$k] = zid($v); + } + } } if(array_key_exists('desc',$ret)) @@ -280,8 +283,11 @@ class Apps { $papp['url'] = z_root() . ((strpos($papp['url'],'/') === 0) ? '' : '/') . $papp['url']; foreach($papp as $k => $v) { - if(strpos($v,'http') === 0 && $k != 'papp') - $papp[$k] = zid($v); + if(strpos($v,'http') === 0 && $k != 'papp') { + if(! (local_channel() && strpos($v,z_root()) === 0)) { + $papp[$k] = zid($v); + } + } if($k === 'desc') $papp['desc'] = str_replace(array('\'','"'),array(''','&dquot;'),$papp['desc']); |