diff options
author | friendica <info@friendica.com> | 2012-03-24 21:50:04 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-03-24 21:50:04 -0700 |
commit | f1cb28774230cb69b9ce8ee5b32e4e2531aa586a (patch) | |
tree | 1c5d43999b433007ff19bd5c591a1c9b3b027e82 /mod | |
parent | d06ddeb1cc6c1bbc7c1f297a917714002839cf85 (diff) | |
download | volse-hubzilla-f1cb28774230cb69b9ce8ee5b32e4e2531aa586a.tar.gz volse-hubzilla-f1cb28774230cb69b9ce8ee5b32e4e2531aa586a.tar.bz2 volse-hubzilla-f1cb28774230cb69b9ce8ee5b32e4e2531aa586a.zip |
bug #329 - compress the plugin list on the friendica info page
Diffstat (limited to 'mod')
-rwxr-xr-x | mod/friendica.php | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/mod/friendica.php b/mod/friendica.php index ab92e31ed..d5dad9448 100755 --- a/mod/friendica.php +++ b/mod/friendica.php @@ -51,15 +51,20 @@ function friendica_content(&$a) { $o .= '<p></p>'; if(count($a->plugins)) { - $o .= '<p>' . t('Installed plugins/addons/apps') . '</p>'; - $o .= '<ul>'; - foreach($a->plugins as $p) - if(strlen($p)) - $o .= '<li>' . $p . '</li>'; - $o .= '</ul>'; + $o .= '<p>' . t('Installed plugins/addons/apps:') . '</p>'; + $sorted = $a->plugins; + $s = ''; + sort($sorted); + foreach($sorted as $p) { + if(strlen($p)) { + if(strlen($s)) $s .= ', '; + $s .= $p; + } + } + $o .= '<div style="margin-left: 25px; margin-right: 25px;">' . $s . '</div>'; } else - $o .= '<p>' . t('No installed plugins/addons/apps'); + $o .= '<p>' . t('No installed plugins/addons/apps') . '</p>'; call_hooks('about_hook', $o); |