mirror of
https://github.com/ShaYmez/ezservermonitor-web.git
synced 2026-06-01 21:45:03 -04:00
Fix on retreive users connected on system block
This commit is contained in:
+1
-6
@@ -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')))
|
||||
|
||||
Reference in New Issue
Block a user