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/viewtopic.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/viewtopic.php')
-rw-r--r-- | phpBB/viewtopic.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php index 50fd341727..1ea8750f64 100644 --- a/phpBB/viewtopic.php +++ b/phpBB/viewtopic.php @@ -883,7 +883,7 @@ while ($row = $db->sql_fetchrow($result)) $id_cache[] = $poster_id; $user_cache[$poster_id] = array( - 'joined' => $user->format_date($row['user_regdate'], $user->lang['DATE_FORMAT']), + 'joined' => $user->format_date($row['user_regdate']), 'posts' => $row['user_posts'], 'warnings' => (isset($row['user_warnings'])) ? $row['user_warnings'] : 0, 'from' => (!empty($row['user_from'])) ? $row['user_from'] : '', |