aboutsummaryrefslogtreecommitdiffstats
path: root/include/network.php
diff options
context:
space:
mode:
authorredmatrix <git@macgirvin.com>2016-06-20 20:34:19 -0700
committerredmatrix <git@macgirvin.com>2016-06-20 20:34:19 -0700
commited166608670c5b5d237c43bd0d672502d5b624f5 (patch)
treeffdbb34528414abde4bbcc6b8b4d3414990c416f /include/network.php
parent9c9d6363af22eeec7f38856302abb3251cb78a10 (diff)
downloadvolse-hubzilla-ed166608670c5b5d237c43bd0d672502d5b624f5.tar.gz
volse-hubzilla-ed166608670c5b5d237c43bd0d672502d5b624f5.tar.bz2
volse-hubzilla-ed166608670c5b5d237c43bd0d672502d5b624f5.zip
code optimisation
Diffstat (limited to 'include/network.php')
-rw-r--r--include/network.php9
1 files changed, 1 insertions, 8 deletions
diff --git a/include/network.php b/include/network.php
index 062f2c2bf..41d13a40e 100644
--- a/include/network.php
+++ b/include/network.php
@@ -1992,14 +1992,7 @@ function get_site_info() {
else
$service_class = false;
- $visible_plugins = array();
- if(is_array(App::$plugins) && count(App::$plugins)) {
- $r = q("select * from addon where hidden = 0");
- if(count($r))
- foreach($r as $rr)
- $visible_plugins[] = $rr['aname'];
- }
- sort($visible_plugins);
+ $visible_plugins = visible_plugin_list();
if(@is_dir('.git') && function_exists('shell_exec'))
$commit = trim(@shell_exec('git log -1 --format="%h"'));