diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2006-03-22 18:48:46 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2006-03-22 18:48:46 +0000 |
| commit | 22063e974adda03672656edbcd879d63122512c1 (patch) | |
| tree | 9d807d66242ac572f4e735a335a1026741daf7bf /phpBB/includes/acp/acp_users.php | |
| parent | 654a35c653bd92409e0dbaee714cb0ee4e9d45ae (diff) | |
| download | forums-22063e974adda03672656edbcd879d63122512c1.tar forums-22063e974adda03672656edbcd879d63122512c1.tar.gz forums-22063e974adda03672656edbcd879d63122512c1.tar.bz2 forums-22063e974adda03672656edbcd879d63122512c1.tar.xz forums-22063e974adda03672656edbcd879d63122512c1.zip | |
- hopefully fixed inactive create forum input field + button for safari 2.0.2 (floating issue?)
- updated format_date calls (fixed ancient calls)
- fixed newest username setting for activating users through the admin panel
git-svn-id: file:///svn/phpbb/trunk@5701 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/acp/acp_users.php')
| -rw-r--r-- | phpBB/includes/acp/acp_users.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/acp/acp_users.php b/phpBB/includes/acp/acp_users.php index f72c6d3310..f66f6f8fcf 100644 --- a/phpBB/includes/acp/acp_users.php +++ b/phpBB/includes/acp/acp_users.php @@ -734,7 +734,7 @@ class acp_users 'USER' => $user_row['username'], 'USER_REGISTERED' => $user->format_date($user_row['user_regdate']), 'REGISTERED_IP' => ($ip == 'hostname') ? gethostbyaddr($user_row['user_ip']) : $user_row['user_ip'], - 'USER_LASTACTIVE' => $user->format_date($user_row['user_lastvisit']), + 'USER_LASTACTIVE' => ($user_row['user_lastvisit']) ? $user->format_date($user_row['user_lastvisit']) : ' - ', 'USER_EMAIL' => $user_row['user_email'], 'USER_WARNINGS' => $user_row['user_warnings'], ) |
