diff options
author | Fabio Comuni <fabrix.xm@gmail.com> | 2012-03-06 09:48:08 +0100 |
---|---|---|
committer | Fabio Comuni <fabrix.xm@gmail.com> | 2012-03-06 09:48:08 +0100 |
commit | be9985a3aed1bfbbc6964973e2f12d0bd7928c04 (patch) | |
tree | 4fc044f6200f010778363a8de72671f45c259eaa /mod | |
parent | 8a51e29824fc2569ac1d0def3070bee7c0552231 (diff) | |
parent | d04fba704861fa27184346d0cefe2069ec8cfa6d (diff) | |
download | volse-hubzilla-be9985a3aed1bfbbc6964973e2f12d0bd7928c04.tar.gz volse-hubzilla-be9985a3aed1bfbbc6964973e2f12d0bd7928c04.tar.bz2 volse-hubzilla-be9985a3aed1bfbbc6964973e2f12d0bd7928c04.zip |
Merge remote-tracking branch 'friendica/master'
Diffstat (limited to 'mod')
-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 )); } |