mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-09 02:06:32 +02:00
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
This commit is contained in:
@@ -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
|
||||
//
|
||||
|
Reference in New Issue
Block a user