diff options
-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 |