aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-03-24 21:50:04 -0700
committerfriendica <info@friendica.com>2012-03-24 21:50:04 -0700
commitf1cb28774230cb69b9ce8ee5b32e4e2531aa586a (patch)
tree1c5d43999b433007ff19bd5c591a1c9b3b027e82 /mod
parentd06ddeb1cc6c1bbc7c1f297a917714002839cf85 (diff)
downloadvolse-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-xmod/friendica.php19
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);