aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/viewtopic.php
diff options
context:
space:
mode:
authornatec <natec@users.sourceforge.net>2001-12-11 09:13:04 +0000
committernatec <natec@users.sourceforge.net>2001-12-11 09:13:04 +0000
commit95679a693275714c7196b70dda011822b9ad6d4f (patch)
treea4b4fe32251e6b437649261462dfa096f327c3f9 /phpBB/viewtopic.php
parent01b7683c36a3f065de20e037576fa04ae23b34fb (diff)
downloadforums-95679a693275714c7196b70dda011822b9ad6d4f.tar
forums-95679a693275714c7196b70dda011822b9ad6d4f.tar.gz
forums-95679a693275714c7196b70dda011822b9ad6d4f.tar.bz2
forums-95679a693275714c7196b70dda011822b9ad6d4f.tar.xz
forums-95679a693275714c7196b70dda011822b9ad6d4f.zip
bug #489842 -- some pages were doing bbencode_second and make_click in a bad order.
git-svn-id: file:///svn/phpbb/trunk@1555 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/viewtopic.php')
-rw-r--r--phpBB/viewtopic.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php
index 9116812e3c..dabff8a987 100644
--- a/phpBB/viewtopic.php
+++ b/phpBB/viewtopic.php
@@ -937,7 +937,6 @@ for($i = 0; $i < $total_posts; $i++)
// important, moving things around could break any
// output
//
- $message = make_clickable($message);
//
// Highlight active words (primarily for search)
@@ -985,9 +984,11 @@ for($i = 0; $i < $total_posts; $i++)
//
if( $postrow[$i]['enable_sig'] && $user_sig != "" )
{
- $message .= "<br /><br />_________________<br />" . make_clickable($user_sig);
+ $message .= "<br /><br />_________________<br />" . $user_sig;
}
+ $message = make_clickable($message);
+
//
// Replace naughty words
//