Fix on retreive users connected on system block

This commit is contained in:
ShevAbam 2014-11-11 17:05:49 +01:00
parent f6a714596e
commit f71fb5bfc1
1 changed files with 1 additions and 6 deletions

View File

@ -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')))