diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-01-02 01:06:06 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-01-02 01:06:06 +0000 |
commit | 83f3c4114164617f48f3b013027f9079ddc2675c (patch) | |
tree | 3fc5ba313a14992eb3683e2a2e46c095fc7a8f7f /templates/show_users.inc | |
parent | 5c2efb82b74874e5f7220cb1a00479c009d9221b (diff) | |
download | ampache-83f3c4114164617f48f3b013027f9079ddc2675c.tar.gz ampache-83f3c4114164617f48f3b013027f9079ddc2675c.tar.bz2 ampache-83f3c4114164617f48f3b013027f9079ddc2675c.zip |
updated registration mojo thx pb1dft also some fluf updates
Diffstat (limited to 'templates/show_users.inc')
-rw-r--r-- | templates/show_users.inc | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/templates/show_users.inc b/templates/show_users.inc index dc43fb20..f91fbcc8 100644 --- a/templates/show_users.inc +++ b/templates/show_users.inc @@ -49,6 +49,12 @@ $admin_menu = "admin/"; </a> </td> <td align="center"> + <a href="<?php echo conf('web_path'); ?>/<?php echo $_SESSION['view_script']; ?>?action=<?php echo $_REQUEST['action']; ?>&keep_view=true&sort_type=last_seen&sort_order=0"> + <b><?php echo _("Registration Date"); ?></b> + </a> + </td> + + <td align="center"> <b><?php echo _("Edit"); ?></b> </td> <td align="center"> @@ -74,6 +80,9 @@ 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"; } + ?> <tr class="even"> <td> @@ -84,6 +93,10 @@ while ( $results = mysql_fetch_object($db_result) ) { <td align="center"> <?php echo $last_seen; ?> </td> + <td align="center"> + <?php echo $reg_date; ?> + </td> + <td> <a href="<?php echo conf('web_path'); ?>/admin/users.php?action=edit&user=<?php echo $user->username; ?>"> <?php echo _("Edit"); ?> |