diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2009-03-17 15:31:03 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2009-03-17 15:31:03 +0000 |
commit | 308ded3f55cc9143dda9c9acb0b334f30836c366 (patch) | |
tree | f4f30efab897305254b414c2de1b6e28801c31d9 /phpBB | |
parent | a80f7a5ea10b039ec1549d391ecd8431240c640e (diff) | |
download | forums-308ded3f55cc9143dda9c9acb0b334f30836c366.tar forums-308ded3f55cc9143dda9c9acb0b334f30836c366.tar.gz forums-308ded3f55cc9143dda9c9acb0b334f30836c366.tar.bz2 forums-308ded3f55cc9143dda9c9acb0b334f30836c366.tar.xz forums-308ded3f55cc9143dda9c9acb0b334f30836c366.zip |
Bug #39735 - force full date on bump message
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9388 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-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 995874b6b5..6cc7de0106 100644 --- a/phpBB/viewtopic.php +++ b/phpBB/viewtopic.php @@ -1381,7 +1381,7 @@ for ($i = 0, $end = sizeof($post_list); $i < $end; ++$i) // It is safe to grab the username from the user cache array, we are at the last // post and only the topic poster and last poster are allowed to bump. // Admins and mods are bound to the above rules too... - $l_bumped_by = '<br /><br />' . sprintf($user->lang['BUMPED_BY'], $user_cache[$topic_data['topic_bumper']]['username'], $user->format_date($topic_data['topic_last_post_time'])); + $l_bumped_by = '<br /><br />' . sprintf($user->lang['BUMPED_BY'], $user_cache[$topic_data['topic_bumper']]['username'], $user->format_date($topic_data['topic_last_post_time'], false, true)); } else { |