diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2008-11-30 16:56:31 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2008-11-30 16:56:31 +0000 |
| commit | 81b57da1475696d8f43e21b594be82642ef50772 (patch) | |
| tree | 86982053425a3099a81ff57d9a68ab9abb958e02 /phpBB/viewtopic.php | |
| parent | 4379b3d7bcd62e4d99fc8cc71c91a2c05c4f85d5 (diff) | |
| download | forums-81b57da1475696d8f43e21b594be82642ef50772.tar forums-81b57da1475696d8f43e21b594be82642ef50772.tar.gz forums-81b57da1475696d8f43e21b594be82642ef50772.tar.bz2 forums-81b57da1475696d8f43e21b594be82642ef50772.tar.xz forums-81b57da1475696d8f43e21b594be82642ef50772.zip | |
force full date on "edited by" line. ;)
git-svn-id: file:///svn/phpbb/trunk@9139 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 3a8714a375..46ff8510a8 100644 --- a/phpBB/viewtopic.php +++ b/phpBB/viewtopic.php @@ -1349,7 +1349,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 { @@ -1368,7 +1368,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 |
