diff options
author | redmatrix <git@macgirvin.com> | 2016-06-20 13:42:04 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-06-20 13:42:04 -0700 |
commit | 01bfadaeaa6440586aba74cf098b38a9a134a510 (patch) | |
tree | c55c1ad0ef28c992a0e09ee6c4200d1db81d1a10 /Zotlabs | |
parent | cc09f9a7a5f799a0811ba83799c0a3ac6598c476 (diff) | |
download | volse-hubzilla-01bfadaeaa6440586aba74cf098b38a9a134a510.tar.gz volse-hubzilla-01bfadaeaa6440586aba74cf098b38a9a134a510.tar.bz2 volse-hubzilla-01bfadaeaa6440586aba74cf098b38a9a134a510.zip |
fix siteinfo plugin list
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Module/Siteinfo.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Zotlabs/Module/Siteinfo.php b/Zotlabs/Module/Siteinfo.php index 41f6e9f0b..f6b34d0c8 100644 --- a/Zotlabs/Module/Siteinfo.php +++ b/Zotlabs/Module/Siteinfo.php @@ -32,9 +32,8 @@ class Siteinfo extends \Zotlabs\Web\Controller { $r = q("select * from addon where hidden = 0"); if(count($r)) foreach($r as $rr) - $visible_plugins[] = $rr['name']; + $visible_plugins[] = $rr['aname']; } - $plugins_list = ''; if(count($visible_plugins)) { $plugins_text = t('Installed plugins/addons/apps:'); |