diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-10-21 15:00:41 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-10-21 15:00:41 -0700 |
commit | b7538b6ada4df7ace6f27bc6349b63ca7f8651e8 (patch) | |
tree | 02d42222dd4fafc3ae5de3f5e268a2213a48f487 | |
parent | b57e73519975b8d9cc5887c2e35cb36dda6463dc (diff) | |
download | volse-hubzilla-b7538b6ada4df7ace6f27bc6349b63ca7f8651e8.tar.gz volse-hubzilla-b7538b6ada4df7ace6f27bc6349b63ca7f8651e8.tar.bz2 volse-hubzilla-b7538b6ada4df7ace6f27bc6349b63ca7f8651e8.zip |
turn relative links in app_render() into absolute links, without affecting the install.
-rw-r--r-- | include/apps.php | 11 | ||||
-rw-r--r-- | version.inc | 2 |
2 files changed, 9 insertions, 4 deletions
diff --git a/include/apps.php b/include/apps.php index c036867b1..0a62dc5a8 100644 --- a/include/apps.php +++ b/include/apps.php @@ -176,14 +176,19 @@ function app_render($papp,$mode = 'view') { $installed = false; - if(! $papp['photo']) - $papp['photo'] = z_root() . '/' . get_default_profile_photo(80); - if(! $papp) return; + if(! $papp['photo']) + $papp['photo'] = z_root() . '/' . get_default_profile_photo(80); + + + $papp['papp'] = papp_encode($papp); + if(! strstr($papp['url'],'://')) + $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); diff --git a/version.inc b/version.inc index 25638166c..f15d7d5b8 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2015-10-19.1190 +2015-10-21.1192 |