diff --git a/html/pages/authlog.inc.php b/html/pages/authlog.inc.php index a882e83fd..f05fe357c 100644 --- a/html/pages/authlog.inc.php +++ b/html/pages/authlog.inc.php @@ -2,8 +2,8 @@ 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 +12,19 @@ if ($_SESSION['userlevel'] >= '10') { $bg = $list_colour_a; } - echo "||||
|---|---|---|---|---|---|---|---|
| + echo " | |||||||
| ".$entry['datetime'].' | -+ | '.$entry['user'].' | -+ | '.$entry['address'].' | -+ | '.$entry['result'].' | -'; }//end foreach |