]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Admin/Summary.php
Small fix to show PHP.ini upload_max_filesize value also with binary prefix for consi...
[friendica.git] / src / Module / Admin / Summary.php
index 7d159a483c47853fc962c76d461d6514b460a8f9..d27a9b011ba6c008ccb5afa3e1fa62af0d0601a0 100644 (file)
@@ -187,27 +187,6 @@ class Summary extends BaseAdmin
                        }
                }
 
-               $accounts = [
-                       [DI::l10n()->t('Normal Account'), 0],
-                       [DI::l10n()->t('Automatic Follower Account'), 0],
-                       [DI::l10n()->t('Public Forum Account'), 0],
-                       [DI::l10n()->t('Automatic Friend Account'), 0],
-                       [DI::l10n()->t('Blog Account'), 0],
-                       [DI::l10n()->t('Private Forum Account'), 0]
-               ];
-
-               $users = 0;
-               $pageFlagsCountStmt = DBA::p('SELECT `page-flags`, COUNT(`uid`) AS `count` FROM `user` WHERE `uid` != ? GROUP BY `page-flags`', 0);
-               while ($pageFlagsCount = DBA::fetch($pageFlagsCountStmt)) {
-                       $accounts[$pageFlagsCount['page-flags']][1] = $pageFlagsCount['count'];
-                       $users += $pageFlagsCount['count'];
-               }
-               DBA::close($pageFlagsCountStmt);
-
-               Logger::debug('accounts', ['accounts' => $accounts]);
-
-               $pending = Register::getPendingCount();
-
                $deferred = DBA::count('workerqueue', ['NOT `done` AND `retrial` > ?', 0]);
 
                $workerqueue = DBA::count('workerqueue', ['NOT `done` AND `retrial` = ?', 0]);
@@ -221,6 +200,8 @@ class Summary extends BaseAdmin
                $server_settings = [
                        'label' => DI::l10n()->t('Server Settings'),
                        'php'   => [
+                               'version'             => phpversion(),
+                               'php.ini'             => php_ini_loaded_file(),
                                'upload_max_filesize' => ini_get('upload_max_filesize'),
                                'post_max_size'       => ini_get('post_max_size'),
                                'memory_limit'        => ini_get('memory_limit')
@@ -235,9 +216,6 @@ class Summary extends BaseAdmin
                        '$title'          => DI::l10n()->t('Administration'),
                        '$page'           => DI::l10n()->t('Summary'),
                        '$queues'         => $queues,
-                       '$users'          => [DI::l10n()->t('Registered users'), $users],
-                       '$accounts'       => $accounts,
-                       '$pending'        => [DI::l10n()->t('Pending registrations'), $pending],
                        '$version'        => [DI::l10n()->t('Version'), App::VERSION],
                        '$platform'       => App::PLATFORM,
                        '$codename'       => App::CODENAME,