diff options
author | Mario <mario@mariovavti.com> | 2021-03-10 16:28:05 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-03-10 16:28:05 +0000 |
commit | 15bc5c64f3f4c3226e6329f8b8aa73df4aeb5e0b (patch) | |
tree | f47ec7020c314c9101d4ddceb222b608166d4825 /Zotlabs/Lib | |
parent | 440a132c6be512314484b7b331fab5dab92e5fad (diff) | |
download | volse-hubzilla-15bc5c64f3f4c3226e6329f8b8aa73df4aeb5e0b.tar.gz volse-hubzilla-15bc5c64f3f4c3226e6329f8b8aa73df4aeb5e0b.tar.bz2 volse-hubzilla-15bc5c64f3f4c3226e6329f8b8aa73df4aeb5e0b.zip |
php8: isset() returns true if the array key exists but is empty. We need to check with empty() here.
Diffstat (limited to 'Zotlabs/Lib')
-rw-r--r-- | Zotlabs/Lib/Apps.php | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/Zotlabs/Lib/Apps.php b/Zotlabs/Lib/Apps.php index 7c4fc6eeb..5ef4ecc8d 100644 --- a/Zotlabs/Lib/Apps.php +++ b/Zotlabs/Lib/Apps.php @@ -1276,58 +1276,58 @@ class Apps { $ret['type'] = 'personal'; - if(isset($app['app_id'])) + if(!empty($app['app_id'])) $ret['guid'] = $app['app_id']; - if(isset($app['app_sig'])) + if(!empty($app['app_sig'])) $ret['sig'] = $app['app_sig']; - if(isset($app['app_author'])) + if(!empty($app['app_author'])) $ret['author'] = $app['app_author']; - if(isset($app['app_name'])) + if(!empty($app['app_name'])) $ret['name'] = $app['app_name']; - if(isset($app['app_desc'])) + if(!empty($app['app_desc'])) $ret['desc'] = $app['app_desc']; - if(isset($app['app_url'])) + if(!empty($app['app_url'])) $ret['url'] = $app['app_url']; - if(isset($app['app_photo'])) + if(!empty($app['app_photo'])) $ret['photo'] = $app['app_photo']; - if(isset($app['app_icon'])) + if(!empty($app['app_icon'])) $ret['icon'] = $app['app_icon']; - if(isset($app['app_version'])) + if(!empty($app['app_version'])) $ret['version'] = $app['app_version']; - if(isset($app['app_addr'])) + if(!empty($app['app_addr'])) $ret['addr'] = $app['app_addr']; - if(isset($app['app_price'])) + if(!empty($app['app_price'])) $ret['price'] = $app['app_price']; - if(isset($app['app_page'])) + if(!empty($app['app_page'])) $ret['page'] = $app['app_page']; - if(isset($app['app_requires'])) + if(!empty($app['app_requires'])) $ret['requires'] = $app['app_requires']; - if(isset($app['app_system'])) + if(!empty($app['app_system'])) $ret['system'] = $app['app_system']; - if(isset($app['app_options'])) + if(!empty($app['app_options'])) $ret['options'] = $app['app_options']; - if(isset($app['app_plugin'])) + if(!empty($app['app_plugin'])) $ret['plugin'] = trim($app['app_plugin']); - if(isset($app['app_deleted'])) + if(!empty($app['app_deleted'])) $ret['deleted'] = $app['app_deleted']; - if(isset($app['term'])) { + if(!empty($app['term']) && is_array($app['term'])) { $s = ''; foreach($app['term'] as $t) { if($s) |