aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/viewtopic.php
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2009-06-08 10:17:08 +0000
committerAndreas Fischer <bantu@phpbb.com>2009-06-08 10:17:08 +0000
commit27d4c7229d97ba25e5bd303b21f376e14550eba6 (patch)
treefffc0d09af18e3aed136e25f236a94a5236b2c4c /phpBB/viewtopic.php
parenta3c5562a0d8674c0a513d25855b082c726b26f5b (diff)
downloadforums-27d4c7229d97ba25e5bd303b21f376e14550eba6.tar
forums-27d4c7229d97ba25e5bd303b21f376e14550eba6.tar.gz
forums-27d4c7229d97ba25e5bd303b21f376e14550eba6.tar.bz2
forums-27d4c7229d97ba25e5bd303b21f376e14550eba6.tar.xz
forums-27d4c7229d97ba25e5bd303b21f376e14550eba6.zip
Fix bug #34295 - Move post bump information markup to the template.
Authorised by: acydburn git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9563 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 e0584f3dc3..5af6516095 100644
--- a/phpBB/viewtopic.php
+++ b/phpBB/viewtopic.php
@@ -1395,7 +1395,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'], false, true));
+ $l_bumped_by = sprintf($user->lang['BUMPED_BY'], $user_cache[$topic_data['topic_bumper']]['username'], $user->format_date($topic_data['topic_last_post_time'], false, true));
}
else
{