summaryrefslogtreecommitdiff
path: root/libs/system.php
diff options
context:
space:
mode:
Diffstat (limited to 'libs/system.php')
-rw-r--r--libs/system.php7
1 files changed, 1 insertions, 6 deletions
diff --git a/libs/system.php b/libs/system.php
index 62ca9cc..49232ef 100644
--- a/libs/system.php
+++ b/libs/system.php
@@ -59,15 +59,10 @@ else
}
// Current users
-if (!($current_users_cmd = shell_exec('who -q')))
+if (!($current_users = shell_exec('who -u | awk \'{ print $1 }\' | wc -l')))
{
$current_users = 'N.A';
}
-else
-{
- $arr_user = explode('=', $current_users_cmd);
- $current_users = $arr_user[1];
-}
// Server datetime
if (!($server_date = shell_exec('/bin/date')))