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/memberlist.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/memberlist.php')
-rw-r--r-- | phpBB/memberlist.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/memberlist.php b/phpBB/memberlist.php index afcdafe09f..ce788c1230 100644 --- a/phpBB/memberlist.php +++ b/phpBB/memberlist.php @@ -1125,8 +1125,8 @@ function show_profile($data) 'USERNAME' => $username, 'USER_COLOR' => (!empty($data['user_colour'])) ? $data['user_colour'] : '', 'RANK_TITLE' => $rank_title, - 'JOINED' => $user->format_date($data['user_regdate'], $user->lang['DATE_FORMAT']), - 'VISITED' => (empty($last_visit)) ? ' - ' : $user->format_date($last_visit, $user->lang['DATE_FORMAT']), + 'JOINED' => $user->format_date($data['user_regdate']), + 'VISITED' => (empty($last_visit)) ? ' - ' : $user->format_date($last_visit), 'POSTS' => ($data['user_posts']) ? $data['user_posts'] : 0, 'WARNINGS' => isset($data['user_warnings']) ? $data['user_warnings'] : 0, |