diff options
author | tommy tomson <thomas.bierey@gmx.de> | 2012-03-06 08:28:21 +0100 |
---|---|---|
committer | tommy tomson <thomas.bierey@gmx.de> | 2012-03-06 08:28:21 +0100 |
commit | eaaf030c182bd6f9c829a26bdc76c33a83d8c098 (patch) | |
tree | 14d3ddc70daf4bfe85ba116cfebb82a562c83158 /mod/admin.php | |
parent | b64b1d13a43659af3f479bf29b6ac9b9b3f009ee (diff) | |
parent | 321b6516352d25fa64a987fb2efeb0502a24623e (diff) | |
download | volse-hubzilla-eaaf030c182bd6f9c829a26bdc76c33a83d8c098.tar.gz volse-hubzilla-eaaf030c182bd6f9c829a26bdc76c33a83d8c098.tar.bz2 volse-hubzilla-eaaf030c182bd6f9c829a26bdc76c33a83d8c098.zip |
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'mod/admin.php')
-rwxr-xr-x | mod/admin.php | 10 |
1 files changed, 7 insertions, 3 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 )); } |