aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/viewtopic.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2006-03-22 18:48:46 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2006-03-22 18:48:46 +0000
commit22063e974adda03672656edbcd879d63122512c1 (patch)
tree9d807d66242ac572f4e735a335a1026741daf7bf /phpBB/viewtopic.php
parent654a35c653bd92409e0dbaee714cb0ee4e9d45ae (diff)
downloadforums-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.php2
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'] : '',