From 89dd1d8a085c611615142d34ad7fe56d0ef0d5bb Mon Sep 17 00:00:00 2001 From: Meik Sievertsen Date: Tue, 9 Sep 2003 16:34:00 +0000 Subject: [PATCH] fix bbcode_uid, we do not like you empty. :D git-svn-id: file:///svn/phpbb/trunk@4493 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/posting.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/posting.php b/phpBB/posting.php index fdabc7cb08..5a8dad4c52 100644 --- a/phpBB/posting.php +++ b/phpBB/posting.php @@ -804,7 +804,7 @@ if (!sizeof($error) && $preview) // Decode text for message display -$bbcode_uid = ($mode == 'quote' && !$preview) ? $row['bbcode_uid'] : $message_parser->bbcode_uid; +$bbcode_uid = ($mode == 'quote' && !$preview) ? $bbcode_uid : $message_parser->bbcode_uid; decode_text($post_text, $bbcode_uid); if ($subject)