diff options
Diffstat (limited to 'phpBB/viewtopic.php')
-rw-r--r-- | phpBB/viewtopic.php | 5 |
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 // |