diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2008-11-30 16:53:36 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2008-11-30 16:53:36 +0000 |
| commit | 7752023b44d1b9283d9b5d6d6294d783b5ba42dc (patch) | |
| tree | 802b481ebb4b8a70a963a8236d9e85a5856fb3ad /phpBB/viewtopic.php | |
| parent | a752a424de3d250c2bc79f7b680c936fc9ea987f (diff) | |
| download | forums-7752023b44d1b9283d9b5d6d6294d783b5ba42dc.tar forums-7752023b44d1b9283d9b5d6d6294d783b5ba42dc.tar.gz forums-7752023b44d1b9283d9b5d6d6294d783b5ba42dc.tar.bz2 forums-7752023b44d1b9283d9b5d6d6294d783b5ba42dc.tar.xz forums-7752023b44d1b9283d9b5d6d6294d783b5ba42dc.zip | |
force full date on "edited by" line. ;)
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9138 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/viewtopic.php')
| -rw-r--r-- | phpBB/viewtopic.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php index b7b130bbd1..995874b6b5 100644 --- a/phpBB/viewtopic.php +++ b/phpBB/viewtopic.php @@ -1348,7 +1348,7 @@ for ($i = 0, $end = sizeof($post_list); $i < $end; ++$i) $display_username = get_username_string('full', $row['post_edit_user'], $post_edit_list[$row['post_edit_user']]['username'], $post_edit_list[$row['post_edit_user']]['user_colour']); } - $l_edited_by = sprintf($l_edit_time_total, $display_username, $user->format_date($row['post_edit_time']), $row['post_edit_count']); + $l_edited_by = sprintf($l_edit_time_total, $display_username, $user->format_date($row['post_edit_time'], false, true), $row['post_edit_count']); } else { @@ -1367,7 +1367,7 @@ for ($i = 0, $end = sizeof($post_list); $i < $end; ++$i) $display_username = get_username_string('full', $row['post_edit_user'], $user_cache[$row['post_edit_user']]['username'], $user_cache[$row['post_edit_user']]['user_colour']); } - $l_edited_by = sprintf($l_edit_time_total, $display_username, $user->format_date($row['post_edit_time']), $row['post_edit_count']); + $l_edited_by = sprintf($l_edit_time_total, $display_username, $user->format_date($row['post_edit_time'], false, true), $row['post_edit_count']); } } else |
