displays the full date

This commit is contained in:
Nicolas LLOBERA 2017-03-20 23:43:02 +01:00
parent 980b9f75b6
commit 132067b7bf
1 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ $datas = array();
if ($Config->get('last_login:enable'))
{
if (!(exec('/usr/bin/lastlog --time 365 | /usr/bin/awk -F\' \' \'{ print $1";"$5, $4, $8, $6}\'', $users)))
if (!(exec('/usr/bin/lastlog --time 365 | awk \'{ printf $1";"; for (i=4; i<NF; i++) printf $i" "; print $NF; }\'', $users)))
{
$datas[] = array(
'user' => 'N.A',
@ -30,4 +30,4 @@ if ($Config->get('last_login:enable'))
}
}
echo json_encode($datas);
echo json_encode($datas);