diff options
author | friendica <info@friendica.com> | 2014-09-11 22:56:01 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-09-11 22:56:01 -0700 |
commit | cd7d8455688e63f10a823d936230287d9e88254f (patch) | |
tree | ad7f3ac2c7ff33ce28282bb127f5f60c6a8fba90 | |
parent | dd10a77488a16eba43eaa0bf8fb026cb10ceacff (diff) | |
download | volse-hubzilla-cd7d8455688e63f10a823d936230287d9e88254f.tar.gz volse-hubzilla-cd7d8455688e63f10a823d936230287d9e88254f.tar.bz2 volse-hubzilla-cd7d8455688e63f10a823d936230287d9e88254f.zip |
sort the plugins to make it easier to compare lists
-rw-r--r-- | mod/siteinfo.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mod/siteinfo.php b/mod/siteinfo.php index 4f39ffadc..061989413 100644 --- a/mod/siteinfo.php +++ b/mod/siteinfo.php @@ -33,6 +33,7 @@ function siteinfo_init(&$a) { foreach($r as $rr) $visible_plugins[] = $rr['name']; } + sort($visible_plugins); if(@is_dir('.git') && function_exists('shell_exec')) $commit = trim(@shell_exec('git log -1 --format="%h"')); |