diff options
| author | Chad Kieffer <chad@2tbsp.com> | 2009-02-03 06:45:43 +0000 |
|---|---|---|
| committer | Chad Kieffer <chad@2tbsp.com> | 2009-02-03 06:45:43 +0000 |
| commit | d656b6a3e61ac7d32607638ddd125457813b0616 (patch) | |
| tree | 014c52e53356a63d9eab7d0c3a1296b7166f7d29 /modules | |
| parent | 150a90dabd333fc5ed6daa8f725913bbeef19b42 (diff) | |
Beginning of edit user panel fix. Form is displayed again. Added display of user email address to list.
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/user/views/admin_users.html.php | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/modules/user/views/admin_users.html.php b/modules/user/views/admin_users.html.php index b21ef16d..157a084e 100644 --- a/modules/user/views/admin_users.html.php +++ b/modules/user/views/admin_users.html.php @@ -57,12 +57,13 @@ <th></th> <th><?= t("Username") ?></th> <th><?= t("Full name") ?></th> - <th class="understate"><?= t("last login") ?></th> + <th><?= t("Email") ?></th> + <th><?= t("Last login") ?></th> <th>Actions</th> </tr> <? foreach ($users as $i => $user): ?> - <tr class="<?= text::alternate("gOddRow", "gEvenRow") ?> user"> + <tr id="gUser-<?= $user->id ?>" class="<?= text::alternate("gOddRow", "gEvenRow") ?> user"> <td id="user-<?= $user->id ?>" class="core-info"> <img src="<?= $user->avatar_url(20, $theme->url("images/avatar.jpg", true)) ?>" title="<?= t("Drag user onto group below to add as a new member") ?>" @@ -76,8 +77,11 @@ <td> <?= $user->full_name ?> </td> - <td class="understate"> - <?= ($user->last_login == 0) ? "" : date("m j, y", $user->last_login) ?> + <td> + <?= $user->email ?> + </td> + <td> + <?= ($user->last_login == 0) ? "" : date("j-M-y", $user->last_login) ?> </td> <td class="gActions"> <a href="<?= url::site("admin/users/edit_user_form/$user->id") ?>" class="gPanelLink"><?= t("edit") ?></a> |
