1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-12 19:54:12 +02:00

Fixed bug #493598 and added SPAN to signature

git-svn-id: file:///svn/phpbb/trunk@1646 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Bart van Bragt
2001-12-20 16:58:39 +00:00
parent bd80fef17f
commit 809f65ee8e
2 changed files with 3 additions and 1 deletions

View File

@@ -942,6 +942,7 @@ for($i = 0; $i < $total_posts; $i++)
// important, moving things around could break any
// output
//
$message = make_clickable($message);
//
// If the board has HTML off but the post has HTML
@@ -966,6 +967,7 @@ for($i = 0; $i < $total_posts; $i++)
if( $user_sig != "" && $postrow[$i]['enable_sig'] && $user_sig_bbcode_uid != "" )
{
$user_sig = ( $board_config['allow_bbcode'] ) ? bbencode_second_pass($user_sig, $user_sig_bbcode_uid) : preg_replace("/\:[0-9a-z\:]+\]/si", "]", $user_sig);
$user_sig = "<span class=\"signature\">". make_clickable($user_sig). "</span>";
}
//