aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2003-09-09 16:34:00 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2003-09-09 16:34:00 +0000
commit89dd1d8a085c611615142d34ad7fe56d0ef0d5bb (patch)
treefe768d4f767c8743d967d59fa4b32769e9fbd012
parenta363e8dcdb52558366d6242caf3d22b93cb8ce09 (diff)
downloadforums-89dd1d8a085c611615142d34ad7fe56d0ef0d5bb.tar
forums-89dd1d8a085c611615142d34ad7fe56d0ef0d5bb.tar.gz
forums-89dd1d8a085c611615142d34ad7fe56d0ef0d5bb.tar.bz2
forums-89dd1d8a085c611615142d34ad7fe56d0ef0d5bb.tar.xz
forums-89dd1d8a085c611615142d34ad7fe56d0ef0d5bb.zip
fix bbcode_uid, we do not like you empty. :D
git-svn-id: file:///svn/phpbb/trunk@4493 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r--phpBB/posting.php2
1 files changed, 1 insertions, 1 deletions
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)