diff --git a/html/pages/authlog.inc.php b/html/pages/authlog.inc.php index a882e83fd..5a12f4c87 100644 --- a/html/pages/authlog.inc.php +++ b/html/pages/authlog.inc.php @@ -1,9 +1,8 @@ Authlog"; -echo "
| Timestamp | User | IP Address | Result | "; foreach (dbFetchRows("SELECT *,DATE_FORMAT(datetime, '".$config['dateformat']['mysql']['compact']."') as humandate FROM `authlog` ORDER BY `datetime` DESC LIMIT 0,250") as $entry) { if ($bg == $list_colour_a) { $bg = $list_colour_b; @@ -12,20 +11,19 @@ if ($_SESSION['userlevel'] >= '10') { $bg = $list_colour_a; } - echo "||||
|---|---|---|---|---|---|---|---|
| + echo " | |||||||
| ".$entry['datetime'].' | -+ | '.$entry['user'].' | -+ | '.$entry['address'].' | -+ | '.$entry['result'].' | -'; }//end foreach |