diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/show_users.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/show_users.inc b/templates/show_users.inc index f91fbcc8..7331bb79 100644 --- a/templates/show_users.inc +++ b/templates/show_users.inc @@ -80,8 +80,8 @@ while ( $results = mysql_fetch_object($db_result) ) { $last_seen = date("m\/d\/Y - H:i",$user->last_seen); if (!$user->last_seen) { $last_seen = "Never"; } - $reg_date = date("m\/d\/Y - H:i",$user->reg_date); - if (!$user->reg_date) { $reg_date = "Unknown"; } + $create_date = date("m\/d\/Y - H:i",$user->create_date); + if (!$user->create_date) { $create_date = "Unknown"; } ?> <tr class="even"> @@ -94,7 +94,7 @@ while ( $results = mysql_fetch_object($db_result) ) { <?php echo $last_seen; ?> </td> <td align="center"> - <?php echo $reg_date; ?> + <?php echo $create_date; ?> </td> <td> |