diff options
author | friendica <info@friendica.com> | 2012-03-05 18:51:21 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-03-05 18:51:21 -0800 |
commit | 23460302f5e6b97a5e7b9d6038e77dc4c2d13033 (patch) | |
tree | ffc798cfc8571ac56a1944f32dd08aace690a058 | |
parent | 8473444242318582e437f84c5a4006643ccda50d (diff) | |
download | volse-hubzilla-23460302f5e6b97a5e7b9d6038e77dc4c2d13033.tar.gz volse-hubzilla-23460302f5e6b97a5e7b9d6038e77dc4c2d13033.tar.bz2 volse-hubzilla-23460302f5e6b97a5e7b9d6038e77dc4c2d13033.zip |
some admin page fixes and cleanup
-rwxr-xr-x | mod/admin.php | 10 | ||||
-rwxr-xr-x | view/admin_plugins_details.tpl | 9 | ||||
-rwxr-xr-x | view/admin_summary.tpl | 2 | ||||
-rwxr-xr-x | view/theme/darkzero/theme.php | 2 |
4 files changed, 17 insertions, 6 deletions
diff --git a/mod/admin.php b/mod/admin.php index 94bf44503..2115f9241 100755 --- a/mod/admin.php +++ b/mod/admin.php @@ -145,9 +145,10 @@ function admin_page_summary(&$a) { Array( t('Automatic Friend Account'), 0) ); $users=0; - foreach ($r as $u){ $accounts[$u['page-flags']][1] = $u['count']; $users+=$u['count']; } + foreach ($r as $u){ $accounts[$u['page-flags']][1] = $u['count']; $users+= $u['count']; } + + logger('accounts: ' . print_r($accounts,true)); - $r = q("SELECT COUNT(id) as `count` FROM `register`"); $pending = $r[0]['count']; @@ -574,6 +575,8 @@ function admin_page_plugins(&$a){ '$status' => $status, '$action' => $action, '$info' => get_plugin_info($plugin), + '$str_author' => t('Author: '), + '$str_maintainer' => t('Maintainer: '), '$admin_form' => $admin_form, '$function' => 'plugins', @@ -747,7 +750,8 @@ function admin_page_themes(&$a){ '$info' => get_theme_info($theme), '$function' => 'themes', '$admin_form' => $admin_form, - + '$str_author' => t('Author: '), + '$str_maintainer' => t('Maintainer: '), '$readme' => $readme )); } diff --git a/view/admin_plugins_details.tpl b/view/admin_plugins_details.tpl index d7147b20b..ead356f5b 100755 --- a/view/admin_plugins_details.tpl +++ b/view/admin_plugins_details.tpl @@ -4,13 +4,18 @@ <p><span class='toggleplugin icon $status'></span> $info.name - $info.version : <a href="$baseurl/admin/$function/$plugin/?a=t">$action</a></p> <p>$info.description</p> - <p class="author"> + <p class="author">$str_author {{ for $info.author as $a }} {{ if $a.link }}<a href="$a.link">$a.name</a>{{ else }}$a.name{{ endif }}, {{ endfor }} </p> - + <p class="maintainer">$str_maintainer + {{ for $info.maintainer as $a }} + {{ if $a.link }}<a href="$a.link">$a.name</a>{{ else }}$a.name{{ endif }}, + {{ endfor }} + </p> + {{ if $admin_form }} <h3>$settings</h3> <form method="post" action="$baseurl/admin/$function/$plugin/"> diff --git a/view/admin_summary.tpl b/view/admin_summary.tpl index 59428986a..eed71fbe0 100755 --- a/view/admin_summary.tpl +++ b/view/admin_summary.tpl @@ -13,7 +13,7 @@ {{ for $accounts as $p }} <dl> <dt>$p.0</dt> - <dd>$p.1</dd> + <dd>{{ if $p.1 }}$p.1{{ else }}0{{ endif }}</dd> </dl> {{ endfor }} diff --git a/view/theme/darkzero/theme.php b/view/theme/darkzero/theme.php index 37632c4b5..839d862a1 100755 --- a/view/theme/darkzero/theme.php +++ b/view/theme/darkzero/theme.php @@ -4,6 +4,8 @@ * Name: Darkzero * Version: 1.0 * Author: Fabio Communi <fabrix.xm@gmail.com> + * Maintainer: Fabio Communi <fabrix.xm@gmail.com> + * Maintainer: Mike Macgirvin <mike@macgirvin.com> */ $a->theme_info = array( |